diff --git a/docs/conf.py b/docs/conf.py index 482b85faa..2eb98da39 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 Quach, Ryan S. DeFever, Justin Gilmer" # The full version, including alpha/beta/rc tags -version = "0.11.2" -release = "0.11.2" +version = "0.12.0" +release = "0.12.0" # -- General configuration --------------------------------------------------- diff --git a/gmso/__init__.py b/gmso/__init__.py index be00f2304..66ea63ed9 100644 --- a/gmso/__init__.py +++ b/gmso/__init__.py @@ -16,4 +16,4 @@ from .core.pairpotential_type import PairPotentialType from .core.topology import Topology -__version__ = "0.11.2" +__version__ = "0.12.0" diff --git a/setup.cfg b/setup.cfg index 75c2ca4ad..14c7d69fb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.2 +current_version = 0.12.0 commit = True tag = True message = Bump to version {new_version} diff --git a/setup.py b/setup.py index edfe4d772..ce5f87535 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import find_packages, setup ##################################### -VERSION = "0.11.2" +VERSION = "0.12.0" ISRELEASED = False if ISRELEASED: __version__ = VERSION