Skip to content

Commit 0008386

Browse files
committed
version 0.5.4
1 parent 65e654b commit 0008386

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# PyProbables Changelog
22

3-
### Future Version
3+
### Version 0.5.4
44
* All Probablistic Data Structures:
55
* Added ability to load each `frombytes()`
6+
* Updated underlying data structures of number based lists to be more space and time efficient; see [Issue #60](https://github.com/barrust/pyprobables/issues/60)
67
* Cuckoo Filters:
78
* Added `fingerprint_size_bits` property
89
* Added `error_rate` property

probables/__init__.py

Lines changed: 1 addition & 1 deletion
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.3"
30+
__version__ = "0.5.4"
3131
__credits__ = [] # type: ignore
3232
__url__ = "https://github.com/barrust/pyprobables"
3333
__bugtrack_url__ = "https://github.com/barrust/pyprobables/issues"

pyproject.toml

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

0 commit comments

Comments
 (0)