From c12e6c3f2f19258e904a4ab63e1d3e3cf9069eed Mon Sep 17 00:00:00 2001 From: Tal Einat Date: Thu, 27 Mar 2014 15:36:43 +0200 Subject: [PATCH] version 0.2.2 --- HISTORY.rst | 7 +++++++ fuzzysearch/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 1a9d906..75e684b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,13 @@ History ------- +0.2.2 (2014-03-27) +++++++++++++++++++ + +* Added support for searching through BioPython Seq objects +* Added specialized search function allowing only subsitutions and insertions +* Fixed several bugs + 0.2.1 (2014-03-14) ++++++++++++++++++ diff --git a/fuzzysearch/__init__.py b/fuzzysearch/__init__.py index f1cb6e7..bafb00d 100644 --- a/fuzzysearch/__init__.py +++ b/fuzzysearch/__init__.py @@ -13,7 +13,7 @@ Example: """ __author__ = 'Tal Einat' __email__ = 'taleinat@gmail.com' -__version__ = '0.2.1' +__version__ = '0.2.2' __all__ = [ 'find_near_matches', diff --git a/setup.py b/setup.py index 61e3c89..5e9b777 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ history = open('HISTORY.rst').read().replace('.. :changelog:', '') setup( name='fuzzysearch', - version='0.2.1', + version='0.2.2', description='fuzzysearch is useful for finding approximate subsequence matches', long_description=readme + '\n\n' + history, author='Tal Einat',