version 0.2.2
This commit is contained in:
parent
aea33df10e
commit
c12e6c3f2f
|
@ -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)
|
||||
++++++++++++++++++
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ Example:
|
|||
"""
|
||||
__author__ = 'Tal Einat'
|
||||
__email__ = 'taleinat@gmail.com'
|
||||
__version__ = '0.2.1'
|
||||
__version__ = '0.2.2'
|
||||
|
||||
__all__ = [
|
||||
'find_near_matches',
|
||||
|
|
2
setup.py
2
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',
|
||||
|
|
Loading…
Reference in New Issue