Skip to content

Commit

Permalink
Bump version: 0.1.0 → 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rmax committed Jun 23, 2016
1 parent 90ed39a commit 402c5df
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 19 deletions.
33 changes: 17 additions & 16 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.1.1
commit = True
tag = True

Expand All @@ -20,29 +20,30 @@ exclude = docs, tests
max-line-length = 120

[pytest]
norecursedirs =
.*
dist
build
python_files =
test_*.py
*_test.py
tests.py
addopts =
-rxEfsw
norecursedirs =
.*
dist
build
python_files =
test_*.py
*_test.py
tests.py
addopts =
-rxEfsw

[coverage:paths]
source =
src
source =
src

[coverage:run]
branch = true
source =
yammh3
tests
source =
yammh3
tests
parallel = true

[coverage:report]
show_missing = true
precision = 2
omit =

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.0',
version='0.1.1',
description="CPython/Cython Murmurhash3 bindings.",
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.0',
version='0.1.1',
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.0'
__version__ = '0.1.1'

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

Expand Down

0 comments on commit 402c5df

Please sign in to comment.