From 73809122329989245e539ec63890fbbd68ba39e0 Mon Sep 17 00:00:00 2001 From: Tal Einat Date: Tue, 7 Apr 2020 14:14:24 +0300 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.7.0=20=E2=86=92=200.7.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- HISTORY.rst | 6 ++++++ setup.py | 2 +- src/fuzzysearch/__init__.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index caf9ee7..b696f2f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.0 +current_version = 0.7.1 commit = True tag = True diff --git a/HISTORY.rst b/HISTORY.rst index 552bfc4..12cac62 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ------- +0.7.1 (2020-04-05) +++++++++++++++++++ +* Dropped support for Python 3.4. +* Removed deprecation warning with Python 3.8. +* Fixed a couple of nasty bugs. + 0.7.0 (2020-01-14) ++++++++++++++++++ diff --git a/setup.py b/setup.py index 9b25c83..01c7683 100644 --- a/setup.py +++ b/setup.py @@ -111,7 +111,7 @@ def run_setup(with_binary=True): setup( name='fuzzysearch', - version='0.7.0', + version='0.7.1', 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 1977eb1..2b2eca1 100644 --- a/src/fuzzysearch/__init__.py +++ b/src/fuzzysearch/__init__.py @@ -13,7 +13,7 @@ Example: """ __author__ = 'Tal Einat' __email__ = 'taleinat@gmail.com' -__version__ = '0.7.0' +__version__ = '0.7.1' __all__ = [ 'find_near_matches',