Skip to content

Commit f426a59

Browse files
committed
version bump
1 parent 412ef05 commit f426a59

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# PyProbables Changelog
22

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+
38
### Version 0.5.5
49
* Bloom Filters:
510
* Re-implemented the entire Bloom Filter data structure to reduce complexity and code duplication

CITATION.cff

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ abstract: >-
1717
A set of probabilistic data structures written in
1818
python
1919
keywords:
20-
- 'Probabilistic '
20+
- Probabilistic
2121
- Data Structures
2222
- Bloom Filter
2323
- Count-Min Sketch
@@ -31,5 +31,5 @@ keywords:
3131
- Expanding Bloom Filter
3232
- Counting Cuckoo Filter
3333
license: MIT
34-
version: 0.5.5
35-
date-released: '2022-01-15'
34+
version: 0.5.6
35+
date-released: '2022-03-09'

probables/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
__maintainer__ = "Tyler Barrus"
2828
__email__ = "[email protected]"
2929
__license__ = "MIT"
30-
__version__ = "0.5.5"
30+
__version__ = "0.5.6"
3131
__credits__ = [] # type: ignore
3232
__url__ = "https://github.com/barrust/pyprobables"
3333
__bugtrack_url__ = "https://github.com/barrust/pyprobables/issues"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyprobables"
3-
version = "0.5.5"
3+
version = "0.5.6"
44
description = "Probabilistic data structures in Python"
55
authors = ["Tyler Barrus <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)