diff --git a/CHANGELOG.md b/CHANGELOG.md index bcddb19..e82d322 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ * Add retrieve hashes from the filter * Add resize filter, automatically or programatically * Add merging two filters into one + * Add removal of an element from the filter * Count-Min Sketch: * Fix bug in elements added calculation when joining Count-Min Sketches; see [PR #119](https://github.com/barrust/pyprobables/pull/119); Thanks [@cunla](https://github.com/cunla) diff --git a/probables/__init__.py b/probables/__init__.py index 86df549..0ca59c2 100644 --- a/probables/__init__.py +++ b/probables/__init__.py @@ -25,7 +25,7 @@ __maintainer__ = "Tyler Barrus" __email__ = "barrust@gmail.com" __license__ = "MIT" -__version__ = "0.6.0" +__version__ = "0.6.1" __credits__: List[str] = [] __url__ = "https://github.com/barrust/pyprobables" __bugtrack_url__ = "https://github.com/barrust/pyprobables/issues"