diff --git a/CHANGES.md b/CHANGES.md index a36ec7fc..1ffd1049 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ +v2020.7.8 +--------- +* Fix missing modules in package + v2020.7.8 --------- * HPPC feature update - Thanks to Xiao Cui diff --git a/beep/__init__.py b/beep/__init__.py index d9889022..007aa786 100644 --- a/beep/__init__.py +++ b/beep/__init__.py @@ -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]) diff --git a/setup.py b/setup.py index d4f70c94..376ec1e1 100644 --- a/setup.py +++ b/setup.py @@ -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', diff --git a/tasks.py b/tasks.py index c27130c8..de596d52 100644 --- a/tasks.py +++ b/tasks.py @@ -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