From 48fa1d006b07091d18ad5ddbfe5074a5082d7f28 Mon Sep 17 00:00:00 2001 From: Patrick Herring Date: Tue, 22 Dec 2020 14:04:54 -0500 Subject: [PATCH] v2020.12.22.14 release --- CHANGES.md | 8 ++++++++ beep/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index ed9af2af..85deb693 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,13 @@ +v2020.12.22.14 +-------------- +* Update protocol generation for PreDiag project +* Add threshold function +* Add charging waveforms to protocol generation +* Update requirements for package +* Serialization and custom hyperparam tests for datasets + v2020.11.19.17 -------------- * change key for dict diff --git a/beep/__init__.py b/beep/__init__.py index c96b9fea..34d54191 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.11.19.17" +__version__ = "2020.12.22.14" 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 41c9196e..4917aae4 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup(name="beep", url="https://github.com/TRI-AMDD/beep", - version="2020.11.19.17", + version="2020.12.22.14", description=description, long_description=long_description, long_description_content_type='text/markdown',