version 0.2.2

This commit is contained in:
Tal Einat 2014-03-27 15:36:43 +02:00
parent aea33df10e
commit c12e6c3f2f
3 changed files with 9 additions and 2 deletions

View File

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

View File

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

View File

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