Skip to content

Commit

Permalink
Bump version: 0.2.2 → 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
taleinat committed Feb 12, 2015
1 parent 7a622f9 commit 523516a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 15 deletions.
23 changes: 12 additions & 11 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
[bumpversion]
current_version = 0.2.2
current_version = 0.3.0
commit = True
tag = True

[bumpversion:file:setup.py]
parse =
(?:version[ \t]*\=[ \t]*) # 'version=' with spaces
(['"]) # opening quote
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+) # version
\1 # match opening quote
parse =
(?:version[ \t]*\=[ \t]*) # 'version=' with spaces
(['"]) # opening quote
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+) # version
\1 # match opening quote
serialize = version='{major}.{minor}.{patch}'
[bumpversion:file:src/fuzzysearch/__init__.py]
parse =
(?:__version__[ \t]*\=[ \t]*) # '__version__ =' with spaces
(['"]) # opening quote
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+) # version
\1 # match opening quote
parse =
(?:__version__[ \t]*\=[ \t]*) # '__version__ =' with spaces
(['"]) # opening quote
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+) # version
\1 # match opening quote
serialize = __version__ = '{major}.{minor}.{patch}'
8 changes: 6 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@
History
-------

?.?.? (????-??-??)
0.3.0 (2015-02-12)
++++++++++++++++++

* Added ``--noexts`` option for setup.py to avoid trying to build the C extensions
* Added C extensions for several search functions as well as internal functions
* Use C extensions if available, or pure-Python implementations otherwise
* setup.py attempts to build C extensions, but installs without if build fails
* Added ``--noexts`` setup.py option to avoid trying to build the C extensions
* Greatly improved testing and coverage

0.2.2 (2014-03-27)
++++++++++++++++++
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def run_setup(with_binary=True):

setup(
name='fuzzysearch',
version='0.2.2',
version='0.3.0',
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.2.2'
__version__ = '0.3.0'

__all__ = [
'find_near_matches',
Expand Down

0 comments on commit 523516a

Please sign in to comment.