Skip to content

Commit

Permalink
Bump version: '0.0.1' → 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
martibosch committed Feb 1, 2019
1 parent c1a42e3 commit b0557c3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .bumpversion.cfg
@@ -1,9 +1,11 @@
[bumpversion]
current_version = '0.0.1'
current_version = 0.1.0
commit = True
tag = True

[bumpversion:file:setup.py]

[bumpversion:file:pystream/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'

2 changes: 1 addition & 1 deletion pystream/__init__.py
@@ -1,4 +1,4 @@
__version__ = '0.0.1'
__version__ = '0.1.0'

from .monthly_simulation import * # noqa
from .plotting import * # noqa
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -5,7 +5,7 @@

from setuptools import find_packages, setup

__version__ = '0.0.1'
__version__ = '0.1.0'

classifiers = [
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
Expand Down

0 comments on commit b0557c3

Please sign in to comment.