Skip to content

Commit

Permalink
Release v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
prashnts committed May 20, 2024
1 parent 623ddbf commit 9d38016
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ All notable changes to this project will be documented in this file.
The format is based on `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_,
and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_.

`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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

setup(
name="pybloomfiltermmap3",
version="0.5.7",
version="0.6.0",
author="Prashant Sinha",
author_email="[email protected]",
url="https://github.com/prashnts/pybloomfiltermmap3",
Expand Down
2 changes: 1 addition & 1 deletion src/pybloomfilter.pyx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cython: language_level=3

VERSION = (0, 5, 7)
VERSION = (0, 6, 0)
AUTHOR = "Michael Axiak"

__VERSION__ = VERSION
Expand Down

0 comments on commit 9d38016

Please sign in to comment.