Skip to content

Commit

Permalink
Bump version: 0.1.2dev → 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rmax committed Jun 24, 2016
1 parent d01f6dd commit 4dd9b9f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.2dev
current_version = 0.1.2
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<release>dev)?
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def read_file(filename):

setup(
name='yammh3',
version='0.1.2dev',
version='0.1.2',
description="Python/Cython Murmurhash3 binding.",
long_description=read_file('README.rst') + '\n\n' + read_file('HISTORY.rst'),
author="Rolando Espinoza",
Expand Down
2 changes: 1 addition & 1 deletion setup_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_extensions():

setup(
name='yammh3-tests',
version='0.1.2dev',
version='0.1.2',
packages=['tests'],
package_data={
"tests": ['*.pyx', '*.pxd'],
Expand Down
2 changes: 1 addition & 1 deletion src/yammh3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

__author__ = 'Rolando Espinoza'
__email__ = 'rolando at rmax.io'
__version__ = '0.1.2dev'
__version__ = '0.1.2'

__all__ = ['get_include', 'hash128', 'hash64', 'hash32']

Expand Down

0 comments on commit 4dd9b9f

Please sign in to comment.