Skip to content

Commit

Permalink
Bump to version 0.7.7
Browse files Browse the repository at this point in the history
  • Loading branch information
umesh-timalsina committed Dec 11, 2020
1 parent b0c3f5a commit 8c24c56
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 17 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
copyright = u'2014-2020, Vanderbilt University'

# The short X.Y version
version = '0.7.6'
version = '0.7.7'
# The full version, including alpha/beta/rc tags
release = version

Expand Down
2 changes: 1 addition & 1 deletion foyer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from foyer.forcefield import Forcefield
from foyer.forcefields import forcefields

__version__ = '0.7.6'
__version__ = '0.7.7'

__all__ = (
'Forcefield',
Expand Down
26 changes: 12 additions & 14 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
[coverage:run]
omit =
foyer/tests/*

[coverage:report]
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover

# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.:

[bumpversion]
current_version = 0.7.6
current_version = 0.7.7
commit = True
tag = True
message = Bump to version {new_version}
tag_name = {new_version}

[coverage:run]
omit =
foyer/tests/*

[coverage:report]
exclude_lines =
pragma: no cover

if 0:
if __name__ == .__main__.:

[bumpversion:file:foyer/__init__.py]

[bumpversion:file:setup.py]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import setup, find_packages

#####################################
VERSION = "0.7.6"
VERSION = "0.7.7"
ISRELEASED = True
if ISRELEASED:
__version__ = VERSION
Expand Down

0 comments on commit 8c24c56

Please sign in to comment.