From faa0f4d3fb30c63a7fb8eea9778372bbb3243d90 Mon Sep 17 00:00:00 2001 From: Tal Einat Date: Sat, 27 Jun 2020 22:26:10 +0300 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.7.2=20=E2=86=92=200.7.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HISTORY.rst | 6 ++++++ setup.py | 2 +- src/fuzzysearch/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 654d458..b0af801 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ------- +0.7.3 (2020-06-27) +++++++++++++++++++ + +* Fixed segmentation faults due to wrong handling of inputs in bytes-like-only + functions in C extensions. + 0.7.2 (2020-05-07) ++++++++++++++++++ * Added PyPy support. diff --git a/setup.py b/setup.py index f293274..3bf5834 100644 --- a/setup.py +++ b/setup.py @@ -111,7 +111,7 @@ def run_setup(with_binary=True): setup( name='fuzzysearch', - version='0.7.2', + version='0.7.3', description='fuzzysearch is useful for finding approximate subsequence matches', long_description=readme + '\n\n' + history, author='Tal Einat', diff --git a/src/fuzzysearch/__init__.py b/src/fuzzysearch/__init__.py index 40a51a4..457ec83 100644 --- a/src/fuzzysearch/__init__.py +++ b/src/fuzzysearch/__init__.py @@ -13,7 +13,7 @@ """ __author__ = 'Tal Einat' __email__ = 'taleinat@gmail.com' -__version__ = '0.7.2' +__version__ = '0.7.3' __all__ = [ 'find_near_matches',