From 2f214b5ba40e07d4d9673d1aa315200b65099f3a Mon Sep 17 00:00:00 2001 From: Patrick Herring Date: Thu, 28 Oct 2021 12:40:38 -0400 Subject: [PATCH] v2021.10.28.12 release --- CHANGES.md | 7 +++++++ beep/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index acdb4a6f..f1ef0c4f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,12 @@ +v2021.10.28.12 +-------------- +* Add ability to use mapping file for generating cycle_index +* Add ability to stucture both manual and automatically exported files from BioLogic +* Fixed a bug where the featurization hyperparameter dict was altered in place, causing an error on multiple consecutive featurization calls + + v2021.10.11.13 -------------- * New CLI with refactored feature generation classes and training - Thanks Alex Dunn! diff --git a/beep/__init__.py b/beep/__init__.py index a09cb7f1..851c614e 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__ = "2021.10.11.13" +__version__ = "2021.10.28.12" 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 e622b507..e29a9bf9 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup(name="beep", url="https://github.com/TRI-AMDD/beep", - version="2021.10.11.13", + version="2021.10.28.12", description=description, long_description=long_description, long_description_content_type='text/markdown',