From 84dbffc9a5a27d5daeed37137efc0b2efc0e8ecc Mon Sep 17 00:00:00 2001 From: barrust Date: Fri, 12 Jan 2024 17:30:34 -0500 Subject: [PATCH] version bump --- CHANGELOG.md | 1 + CITATION.cff | 5 +++-- probables/__init__.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bea312..0dd8b03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ * Add `QuotientFilter` implementation; [see issue #37](https://github.com/barrust/pyprobables/issues/37) * Add `bitarray` implementation +* Bitwise operations in lieu of modulo calculations ### Version 0.5.9 diff --git a/CITATION.cff b/CITATION.cff index c176705..a8cefc2 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -30,6 +30,7 @@ keywords: - Rolling Bloom Filter - Expanding Bloom Filter - Counting Cuckoo Filter + - Quotient Filter license: MIT -version: 0.5.9 -date-released: '2023-12-28' \ No newline at end of file +version: 0.6.0 +date-released: '2024-01-10' \ No newline at end of file diff --git a/probables/__init__.py b/probables/__init__.py index 5b67a22..86df549 100644 --- a/probables/__init__.py +++ b/probables/__init__.py @@ -25,7 +25,7 @@ __maintainer__ = "Tyler Barrus" __email__ = "barrust@gmail.com" __license__ = "MIT" -__version__ = "0.5.9" +__version__ = "0.6.0" __credits__: List[str] = [] __url__ = "https://github.com/barrust/pyprobables" __bugtrack_url__ = "https://github.com/barrust/pyprobables/issues"