Skip to content

Commit

Permalink
Bump version: 0.7.2 → 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
taleinat committed Jun 28, 2020
1 parent e6750e5 commit faa0f4d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion src/fuzzysearch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"""
__author__ = 'Tal Einat'
__email__ = '[email protected]'
__version__ = '0.7.2'
__version__ = '0.7.3'

__all__ = [
'find_near_matches',
Expand Down

0 comments on commit faa0f4d

Please sign in to comment.