Skip to content

Commit daed876

Browse files
authored
version 0.6.2 (#138)
1 parent 5107e0f commit daed876

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# PyProbables Changelog
22

3+
### Version 0.6.2
4+
5+
* `BloomFilterOnDisk`
6+
* Fix `FileNotFound` exception; see [issue #131](https://github.com/barrust/pyprobables/issues/131)
7+
* Additional tests for `QuotientFilter` and `ExpandingBloomFilter`
8+
* Drop python 3.8 support
9+
* Add python 3.14 support
10+
311
### Version 0.6.1
412

513
* Quotient Filter:

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ keywords:
3232
- Counting Cuckoo Filter
3333
- Quotient Filter
3434
license: MIT
35-
version: 0.6.0
36-
date-released: '2024-01-10'
35+
version: 0.6.2
36+
date-released: '2025-11-29'

probables/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
__maintainer__ = "Tyler Barrus"
2424
__email__ = "barrust@gmail.com"
2525
__license__ = "MIT"
26-
__version__ = "0.6.1"
26+
__version__ = "0.6.2"
2727
__credits__: list[str] = []
2828
__url__ = "https://github.com/barrust/pyprobables"
2929
__bugtrack_url__ = "https://github.com/barrust/pyprobables/issues"

0 commit comments

Comments
 (0)