Skip to content

Commit

Permalink
Bump version: 1.3.0 → 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fcurella committed Aug 13, 2019
1 parent 7c21e75 commit 376bf76
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion genericclient_aiohttp/__init__.py
Expand Up @@ -12,7 +12,7 @@
from failsafe import Failsafe, RetryPolicy, CircuitBreaker


_version = "1.3.0"
_version = "1.3.1"
__version__ = VERSION = tuple(map(int, _version.split('.')))


Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.3.0
current_version = 1.3.1
commit = True
tag = True

Expand All @@ -11,12 +11,12 @@ replace = VERSION = '{new_version}'
search = _version = "{current_version}"
replace = _version = "{new_version}"


[bdist_wheel]
universal = 1

[metadata]
license_file = LICENSE

[aliases]
test=pytest
test = pytest

2 changes: 1 addition & 1 deletion setup.py
@@ -1,7 +1,7 @@
import os
from setuptools import setup, find_packages

VERSION = '1.3.0'
VERSION = '1.3.1'


with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
Expand Down

0 comments on commit 376bf76

Please sign in to comment.