Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
barrust committed Mar 10, 2022
1 parent 412ef05 commit f426a59
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# PyProbables Changelog

### Version 0.5.6
* Bloom Filters:
* Fix for `ValueError` exception when using `estimate_elements()` when all bits are set
* Add Citation file

### Version 0.5.5
* Bloom Filters:
* Re-implemented the entire Bloom Filter data structure to reduce complexity and code duplication
Expand Down
6 changes: 3 additions & 3 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ abstract: >-
A set of probabilistic data structures written in
python
keywords:
- 'Probabilistic '
- Probabilistic
- Data Structures
- Bloom Filter
- Count-Min Sketch
Expand All @@ -31,5 +31,5 @@ keywords:
- Expanding Bloom Filter
- Counting Cuckoo Filter
license: MIT
version: 0.5.5
date-released: '2022-01-15'
version: 0.5.6
date-released: '2022-03-09'
2 changes: 1 addition & 1 deletion probables/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
__maintainer__ = "Tyler Barrus"
__email__ = "barrust@gmail.com"
__license__ = "MIT"
__version__ = "0.5.5"
__version__ = "0.5.6"
__credits__ = [] # type: ignore
__url__ = "https://github.com/barrust/pyprobables"
__bugtrack_url__ = "https://github.com/barrust/pyprobables/issues"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyprobables"
version = "0.5.5"
version = "0.5.6"
description = "Probabilistic data structures in Python"
authors = ["Tyler Barrus <barrust@gmail.com>"]
license = "MIT"
Expand Down

0 comments on commit f426a59

Please sign in to comment.