From 854253356897873739f3fcc7f44d42422a433bab Mon Sep 17 00:00:00 2001 From: Prashant Sinha Date: Sat, 22 Aug 2020 01:18:15 +0200 Subject: [PATCH] prepare v0.5.3 for release --- CHANGELOG | 11 ++++++++--- setup.py | 2 +- src/pybloomfilter.pyx | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index f1b0029..083b575 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -7,13 +7,18 @@ 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 `_. -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) diff --git a/setup.py b/setup.py index 5cc983d..7939486 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ setup( name="pybloomfiltermmap3", - version="0.5.2", + version="0.5.3", 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 adde0eb..a4671c2 100644 --- a/src/pybloomfilter.pyx +++ b/src/pybloomfilter.pyx @@ -1,6 +1,6 @@ # cython: language_level=3 -VERSION = (0, 5, 2) +VERSION = (0, 5, 3) AUTHOR = "Michael Axiak" __VERSION__ = VERSION