Skip to content

Commit

Permalink
version bump (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
barrust authored Oct 19, 2021
1 parent 7c56f94 commit 3e51d38
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# PyProbables Changelog

### FUTURE VERSION
### Version 0.5.0
* ***BACKWARD INCOMPATIBLE CHANGES***
* **NOTE:** Breaks backwards compatibility with previously exported blooms, counting-blooms, cuckoo filter, or count-min-sketch files using the default hash!
* Update to the FNV_1a hash function
* Update to the FNV_1a hash function
* Simplified the default hash to use a seed value
* Ensure passing of depth to hashing function when using `hash_with_depth_int` or `hash_with_depth_bytes`

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ of all changes.
Backward Compatible Changes
---------------------------

If you are using previously exported probablistic data structure (v0.4.1 or below)
If you are using previously exported probablistic data structures (v0.4.1 or below)
and used the default hashing strategy, you will want to use the following code
to mimic the original default hashing algorithm.

Expand Down
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__ = "[email protected]"
__license__ = "MIT"
__version__ = "0.4.1"
__version__ = "0.5.0"
__credits__ = []
__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.4.1"
version = "0.5.0"
description = "Probabilistic data structures in Python"
authors = ["Tyler Barrus <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 3e51d38

Please sign in to comment.