Bump version: 0.7.0 → 0.7.1

This commit is contained in:
Tal Einat 2020-04-07 14:14:24 +03:00
parent 6ef50447eb
commit 7380912232
No known key found for this signature in database
GPG Key ID: 613A98AF4C800CDA
4 changed files with 9 additions and 3 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.7.0
current_version = 0.7.1
commit = True
tag = True

View File

@ -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)
++++++++++++++++++

View File

@ -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',

View File

@ -13,7 +13,7 @@ Example:
"""
__author__ = 'Tal Einat'
__email__ = 'taleinat@gmail.com'
__version__ = '0.7.0'
__version__ = '0.7.1'
__all__ = [
'find_near_matches',