Skip to content

Commit

Permalink
prepare v0.5.3 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
prashnts committed Aug 21, 2020
1 parent 2ca5a55 commit 8542533
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,18 @@ 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>`_.

next
----
`0.5.3`_ (2020-08-22)
---------------------
.. _0.5.3: https://github.com/prashnts/pybloomfiltermmap3/releases/tag/0.5.3

Fixes
^^^^^
- Fixed a long standing issue where Bloom filter length would not get reset after calling `clear_all()`
- Added C99 compatibility for MurmurHash3.c as pybloomfilter would fail on some systems such as Alpine
- Added C99 compatibility for `MurmurHash3.c` as pybloomfilter would fail on some systems such as Alpine

Changes
^^^^^^^
- Release tooling (uploads tagged releases to pypi).


`0.5.2`_ (2020-01-13)
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.2",
version="0.5.3",
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, 2)
VERSION = (0, 5, 3)
AUTHOR = "Michael Axiak"

__VERSION__ = VERSION
Expand Down

0 comments on commit 8542533

Please sign in to comment.