File tree 4 files changed +10
-5
lines changed
4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1
1
# PyProbables Changelog
2
2
3
+ ### Version 0.5.6
4
+ * Bloom Filters:
5
+ * Fix for ` ValueError ` exception when using ` estimate_elements() ` when all bits are set
6
+ * Add Citation file
7
+
3
8
### Version 0.5.5
4
9
* Bloom Filters:
5
10
* Re-implemented the entire Bloom Filter data structure to reduce complexity and code duplication
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ abstract: >-
17
17
A set of probabilistic data structures written in
18
18
python
19
19
keywords :
20
- - ' Probabilistic '
20
+ - Probabilistic
21
21
- Data Structures
22
22
- Bloom Filter
23
23
- Count-Min Sketch
@@ -31,5 +31,5 @@ keywords:
31
31
- Expanding Bloom Filter
32
32
- Counting Cuckoo Filter
33
33
license : MIT
34
- version : 0.5.5
35
- date-released : ' 2022-01-15 '
34
+ version : 0.5.6
35
+ date-released : ' 2022-03-09 '
Original file line number Diff line number Diff line change 27
27
__maintainer__ = "Tyler Barrus"
28
28
29
29
__license__ = "MIT"
30
- __version__ = "0.5.5 "
30
+ __version__ = "0.5.6 "
31
31
__credits__ = [] # type: ignore
32
32
__url__ = "https://github.com/barrust/pyprobables"
33
33
__bugtrack_url__ = "https://github.com/barrust/pyprobables/issues"
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " pyprobables"
3
- version = " 0.5.5 "
3
+ version = " 0.5.6 "
4
4
description = " Probabilistic data structures in Python"
5
5
authors = [
" Tyler Barrus <[email protected] >" ]
6
6
license = " MIT"
You can’t perform that action at this time.
0 commit comments