diff --git a/docs/conf.py b/docs/conf.py index 265397b3..6630ce3e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,8 +23,8 @@ author = "Matt Thompson, Alex Yang, Ray Matsumoto, Parashara Shamaprasad, Umesh Timalsina, Co D. Quach, Ryan S. DeFever, Justin Gilmer" # The full version, including alpha/beta/rc tags -version = "0.12.3" -release = "0.12.3" +version = "0.12.4" +release = "0.12.4" # -- General configuration --------------------------------------------------- diff --git a/gmso/__init__.py b/gmso/__init__.py index c0aad126..e13d2a84 100644 --- a/gmso/__init__.py +++ b/gmso/__init__.py @@ -17,4 +17,4 @@ from .core.pairpotential_type import PairPotentialType from .core.topology import Topology -__version__ = "0.12.3" +__version__ = "0.12.4" diff --git a/setup.cfg b/setup.cfg index fd42e1b8..181c0d05 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.12.3 +current_version = 0.12.4 commit = True tag = True message = Bump to version {new_version} diff --git a/setup.py b/setup.py index 0aee1b0e..65776d8c 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import find_packages, setup ##################################### -VERSION = "0.12.3" +VERSION = "0.12.4" ISRELEASED = False if ISRELEASED: __version__ = VERSION