diff --git a/CHANGELOG.md b/CHANGELOG.md index e82d322..136e789 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # PyProbables Changelog +### Version 0.6.2 + +* `BloomFilterOnDisk` + * Fix `FileNotFound` exception; see [issue #131](https://github.com/barrust/pyprobables/issues/131) +* Additional tests for `QuotientFilter` and `ExpandingBloomFilter` +* Drop python 3.8 support +* Add python 3.14 support + ### Version 0.6.1 * Quotient Filter: diff --git a/CITATION.cff b/CITATION.cff index a8cefc2..de86a5c 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -32,5 +32,5 @@ keywords: - Counting Cuckoo Filter - Quotient Filter license: MIT -version: 0.6.0 -date-released: '2024-01-10' \ No newline at end of file +version: 0.6.2 +date-released: '2025-11-29' \ No newline at end of file diff --git a/probables/__init__.py b/probables/__init__.py index 532cb8e..8791d39 100644 --- a/probables/__init__.py +++ b/probables/__init__.py @@ -23,7 +23,7 @@ __maintainer__ = "Tyler Barrus" __email__ = "barrust@gmail.com" __license__ = "MIT" -__version__ = "0.6.1" +__version__ = "0.6.2" __credits__: list[str] = [] __url__ = "https://github.com/barrust/pyprobables" __bugtrack_url__ = "https://github.com/barrust/pyprobables/issues"