Skip to content

Commit

Permalink
Bump to version 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
daico007 committed Jun 30, 2021
1 parent 6b77922 commit af8c0b5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
copyright = u"2014-2020, Vanderbilt University"

# The short X.Y version
version = "0.9.1"
version = "0.9.2"
# 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
Expand Up @@ -2,6 +2,6 @@
from foyer.forcefield import Forcefield
from foyer.forcefields import forcefields

__version__ = "0.9.1"
__version__ = "0.9.2"

__all__ = ("Forcefield", "forcefields", "__version__")
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[bumpversion]
current_version = 0.9.1
current_version = 0.9.2
commit = True
tag = True
message = Bump to version {new_version}
tag_name = {new_version}

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

[coverage:report]
exclude_lines =
exclude_lines =
pragma: no cover

if 0:
if __name__ == .__main__.:

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 find_packages, setup

#####################################
VERSION = "0.9.1"
VERSION = "0.9.2"
ISRELEASED = True
if ISRELEASED:
__version__ = VERSION
Expand Down

0 comments on commit af8c0b5

Please sign in to comment.