From cf80f09d0f9e247e8d88248955b004090c7304af Mon Sep 17 00:00:00 2001 From: Prashant Sinha Date: Thu, 16 Feb 2023 21:30:06 +0100 Subject: [PATCH] rebuild with newer cython --- CHANGELOG | 4 ++-- requirements-dev.txt | 4 ++-- setup.py | 2 +- src/pybloomfilter.pyx | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index d066819..1a9a2a4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -7,9 +7,9 @@ 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.5.6`_ (2023-02-16) +`0.5.7`_ (2023-02-16) --------------------- -.. _0.5.6: https://github.com/prashnts/pybloomfiltermmap3/releases/tag/0.5.6 +.. _0.5.7: https://github.com/prashnts/pybloomfiltermmap3/releases/tag/0.5.7 Fixes ^^^^^ diff --git a/requirements-dev.txt b/requirements-dev.txt index f45fa3e..c03eb43 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,3 +1,3 @@ -Cython==0.29.13 +Cython==0.29.33 Sphinx==2.2.1 -sphinx-rtd-theme==0.4.3 \ No newline at end of file +sphinx-rtd-theme==0.4.3 diff --git a/setup.py b/setup.py index 3c9dee8..e25cb4d 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ setup( name="pybloomfiltermmap3", - version="0.5.6", + version="0.5.7", 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 4ad1652..f7f9447 100644 --- a/src/pybloomfilter.pyx +++ b/src/pybloomfilter.pyx @@ -1,6 +1,6 @@ # cython: language_level=3 -VERSION = (0, 5, 6) +VERSION = (0, 5, 7) AUTHOR = "Michael Axiak" __VERSION__ = VERSION