diff --git a/CHANGES.md b/CHANGES.md index 8c58ec41..25808cc4 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ +v2020.4.9 +--------- +* Reduce memory and reduce warnings - Thanks to Linda Hung + v2020.4.8 --------- * Add print statements for stdout only in the stage enviroment diff --git a/beep/__init__.py b/beep/__init__.py index 77ae3510..cca693f1 100644 --- a/beep/__init__.py +++ b/beep/__init__.py @@ -21,7 +21,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.4.8" +__version__ = "2020.4.9" 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 f179cbd6..7623aba2 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup(name="beep", url="https://github.com/TRI-AMDD/beep", - version="2020.4.8", + version="2020.4.9", description=DESCRIPTION, long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown',