diff --git a/docs/source/conf.py b/docs/source/conf.py index 0ff4a063..c14642ef 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -33,7 +33,7 @@ copyright = "2014-2020, Vanderbilt University" # The short X.Y version -version = "0.10.0" +version = "0.11.0" # The full version, including alpha/beta/rc tags release = version diff --git a/foyer/__init__.py b/foyer/__init__.py index 410d2079..9048f057 100644 --- a/foyer/__init__.py +++ b/foyer/__init__.py @@ -2,6 +2,6 @@ from foyer.forcefield import Forcefield from foyer.forcefields import forcefields -__version__ = "0.10.0" +__version__ = "0.11.0" __all__ = ("Forcefield", "forcefields", "__version__") diff --git a/setup.cfg b/setup.cfg index ed43efc3..f367330c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0 +current_version = 0.11.0 commit = True tag = True message = Bump to version {new_version} diff --git a/setup.py b/setup.py index 766d8163..2617d202 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import find_packages, setup ##################################### -VERSION = "0.10.0" +VERSION = "0.11.0" ISRELEASED = True if ISRELEASED: __version__ = VERSION