Skip to content

Commit

Permalink
Bump to version 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
daico007 committed Oct 22, 2021
1 parent 87440b4 commit 45036e9
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -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 ---------------------------------------------------
2 changes: 1 addition & 1 deletion gmso/__init__.py
Original file line number Diff line number Diff line change
@@ -16,4 +16,4 @@
from .core.subtopology import SubTopology
from .core.topology import Topology

__version__ = "0.7.0"
__version__ = "0.7.1"
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
from setuptools import find_packages, setup

#####################################
VERSION = "0.7.0"
VERSION = "0.7.1"
ISRELEASED = False
if ISRELEASED:
__version__ = VERSION

0 comments on commit 45036e9

Please sign in to comment.