diff --git a/docs/conf.py b/docs/conf.py index 79f4f144..265397b3 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.2" -release = "0.12.2" +version = "0.12.3" +release = "0.12.3" # -- General configuration --------------------------------------------------- diff --git a/gmso/__init__.py b/gmso/__init__.py index 22e92adf..c0aad126 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.2" +__version__ = "0.12.3" diff --git a/setup.cfg b/setup.cfg index 46cde417..fd42e1b8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.12.2 +current_version = 0.12.3 commit = True tag = True message = Bump to version {new_version} diff --git a/setup.py b/setup.py index 97638d79..0aee1b0e 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import find_packages, setup ##################################### -VERSION = "0.12.2" +VERSION = "0.12.3" ISRELEASED = False if ISRELEASED: __version__ = VERSION