diff --git a/.bumpversion.cfg b/.bumpversion.cfg index fcd14433..023442d9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.9 +current_version = 0.11.0 commit = True [bumpversion:file:setup.py] diff --git a/README.md b/README.md index 71d977aa..8977038d 100644 --- a/README.md +++ b/README.md @@ -108,4 +108,4 @@ Please report any issues to the [issues page](https://github.com/netZoo/netZooPy Please note that this project is released with a [Contributor Code of Conduct](CONDUCT.md). By participating in this project you agree to abide by its terms. -Latest version: 0.10.9 +Latest version: 0.11.0 diff --git a/conda/meta.yaml b/conda/meta.yaml index 26e5980e..448f2d17 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,6 +1,6 @@ package: name: netzoopy - version: 0.10.9 + version: 0.11.0 source: path: .. diff --git a/docs/conf.py b/docs/conf.py index dceaf5d8..9ffca205 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,7 +29,7 @@ author = u'netZoo' # The short X.Y version -__version__ = "0.10.9" +__version__ = "0.11.0" version = ".".join(__version__.split(".")[:2]) # The full version, including alpha/beta/rc tags release = __version__ diff --git a/netZooPy/__init__.py b/netZooPy/__init__.py index 6a2c58aa..bb0f8197 100644 --- a/netZooPy/__init__.py +++ b/netZooPy/__init__.py @@ -8,4 +8,4 @@ from netZooPy import sambar from netZooPy import bonobo -__version__ = "0.10.9" +__version__ = "0.11.0" diff --git a/setup.py b/setup.py index c9f5c08f..7bad036c 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages setup(name='netZooPy', - version='0.10.9', + version='0.11.0', description='Python implementation of netZoo', url='https://github.com/netZoo/netZooPy', author='netZoo team',