diff --git a/AUTHORS b/AUTHORS index 92beca2..3f28806 100644 --- a/AUTHORS +++ b/AUTHORS @@ -16,6 +16,7 @@ Contributors - gaetano-guerriero: fixed base64 dumps - gonzalezzfelipe: fixed buggy "copy_template" method - xyb: added bit_count and approximation of set elements. +- stevesimmons: pickleable bloom filters .. _axiak: https://github.com/axiak .. _prashnts: https://github.com/prashnts diff --git a/CHANGELOG b/CHANGELOG index 1a9a2a4..bf24a08 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -7,6 +7,15 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog `_, and this project adheres to `Semantic Versioning `_. +`0.6.0`_ (2023-02-16) +--------------------- +.. _0.6.0: https://github.com/prashnts/pybloomfiltermmap3/releases/tag/0.6.0 + +Added +^^^^^ +- In-memory bloom filters are now pickleable. Thanks @stevesimmons (#44)! + + `0.5.7`_ (2023-02-16) --------------------- .. _0.5.7: https://github.com/prashnts/pybloomfiltermmap3/releases/tag/0.5.7 diff --git a/setup.py b/setup.py index 63c9a0e..094d47d 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ setup( name="pybloomfiltermmap3", - version="0.5.7", + version="0.6.0", author="Prashant Sinha", author_email="prashant@noop.pw", url="https://github.com/prashnts/pybloomfiltermmap3", diff --git a/src/pybloomfilter.pyx b/src/pybloomfilter.pyx index 4d58457..7437894 100644 --- a/src/pybloomfilter.pyx +++ b/src/pybloomfilter.pyx @@ -1,6 +1,6 @@ # cython: language_level=3 -VERSION = (0, 5, 7) +VERSION = (0, 6, 0) AUTHOR = "Michael Axiak" __VERSION__ = VERSION