diff --git a/docs/conf.py b/docs/conf.py index a543ba55f..482bb45e0 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.7.1" -release = "0.7.1" +version = "0.7.2" +release = "0.7.2" # -- General configuration --------------------------------------------------- diff --git a/gmso/__init__.py b/gmso/__init__.py index 670c838ca..5b91229a9 100644 --- a/gmso/__init__.py +++ b/gmso/__init__.py @@ -16,4 +16,4 @@ from .core.subtopology import SubTopology from .core.topology import Topology -__version__ = "0.7.1" +__version__ = "0.7.2" diff --git a/setup.cfg b/setup.cfg index e9fb84c0b..c6327efe8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.1 +current_version = 0.7.2 commit = True tag = True message = Bump to version {new_version} diff --git a/setup.py b/setup.py index 5afcfca45..0f395bc1d 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import find_packages, setup ##################################### -VERSION = "0.7.1" +VERSION = "0.7.2" ISRELEASED = False if ISRELEASED: __version__ = VERSION