diff --git a/docs/conf.py b/docs/conf.py index fdda86445..a543ba55f 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.0" -release = "0.7.0" +version = "0.7.1" +release = "0.7.1" # -- General configuration --------------------------------------------------- diff --git a/gmso/__init__.py b/gmso/__init__.py index e817c2e2f..670c838ca 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.0" +__version__ = "0.7.1" diff --git a/setup.cfg b/setup.cfg index 4f32f662f..e9fb84c0b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.0 +current_version = 0.7.1 commit = True tag = True message = Bump to version {new_version} @@ -9,15 +9,15 @@ tag_name = {new_version} omit = gmso/tests/* [coverage:report] -exclude_lines = +exclude_lines = pragma: no cover - + def __repr__ def __str__ except ImportError if 0: if __name__ == .__main__.: -omit = +omit = gmso/tests/* [bumpversion:file:gmso/__init__.py] diff --git a/setup.py b/setup.py index 428533650..5afcfca45 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import find_packages, setup ##################################### -VERSION = "0.7.0" +VERSION = "0.7.1" ISRELEASED = False if ISRELEASED: __version__ = VERSION