diff --git a/docs/source/conf.py b/docs/source/conf.py index c0b08d15..e0319734 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -33,7 +33,7 @@ copyright = u"2014-2020, Vanderbilt University" # The short X.Y version -version = "0.9.2" +version = "0.9.4" # The full version, including alpha/beta/rc tags release = version diff --git a/foyer/__init__.py b/foyer/__init__.py index 4e749954..e994140f 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.9.2" +__version__ = "0.9.4" __all__ = ("Forcefield", "forcefields", "__version__") diff --git a/setup.cfg b/setup.cfg index a053ef32..0aeb6553 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.2 +current_version = 0.9.4 commit = True tag = True message = Bump to version {new_version} diff --git a/setup.py b/setup.py index f8a1c22b..b54e5ba6 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import find_packages, setup ##################################### -VERSION = "0.9.2" +VERSION = "0.9.4" ISRELEASED = True if ISRELEASED: __version__ = VERSION