Skip to content

Commit

Permalink
Bump version: 0.1.0 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rwanyoike committed Dec 12, 2016
1 parent df4d33b commit 646fbc5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[aliases]
test = pytest

[bumpversion]
current_version = 0.1.0
current_version = 0.2.0
commit = True
tag = True

[aliases]
test = pytest

[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

setup(
name='time2relax',
version='0.1.0',
version='0.2.0',
description='CouchDB driver for Python.',
long_description=readme + '\n\n' + history,
author='Raymond Wanyoike',
Expand Down
2 changes: 1 addition & 1 deletion time2relax/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from requests.compat import urljoin, quote
from six import iteritems

__version__ = '0.1.0'
__version__ = '0.2.0'

COUCHDB_URL = os.environ.get('COUCHDB_URL', 'http://localhost:5984/')

Expand Down

0 comments on commit 646fbc5

Please sign in to comment.