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