Skip to content

Commit

Permalink
v2020.7.8.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickherring-TRI committed Jul 9, 2020
1 parent ef9bfb5 commit fc85c71
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@


v2020.7.8
---------
* Fix missing modules in package

v2020.7.8
---------
* HPPC feature update - Thanks to Xiao Cui
Expand Down
2 changes: 1 addition & 1 deletion beep/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# Versioning. The python code version is frequently tagged
# with a commit hash from the repo, which is supplied via
# an environment variable by the integration build procedure
__version__ = "2020.7.8"
__version__ = "2020.7.8.1"
VERSION_TAG = os.environ.get("BEEP_VERSION_TAG")
if VERSION_TAG is not None:
__version__ = '-'.join([__version__, VERSION_TAG])
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setup(name="beep",
url="https://github.com/TRI-AMDD/beep",
version="2020.7.8",
version="2020.7.8.1",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
Expand Down
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

from beep import __version__ as CURRENT_VER

NEW_VER = datetime.datetime.today().strftime("%Y.%-m.%-d")
NEW_VER = datetime.datetime.today().strftime("%Y.%-m.%-d") + '.1'


@task
Expand Down

0 comments on commit fc85c71

Please sign in to comment.