diff --git a/CHANGES.md b/CHANGES.md index d2d93d96..d7efa09c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,20 @@ +v2020.5.24 +---------- + +* Address Issue #45 - Failing tests with NoCredential Error +* Change to more descriptive name of the data directory and add defaults +* Changing the exception catch to be broad, exceptions change depending on environment +* Make creation of directories automatic +* Add validation criteria for maccor files to have minimum cycle number +* Changing the exception catch to be broad, exceptions change depending on environment +* Adding data types to raw arbin data +* Rough draft of features from diagnostic cycles - Thanks to Chirranjeevi Gopal +* include truncated PreDiag structure file for tests +* add lmfit to requirements + test fix +* updates to class variables + v2020.5.16 ---------- * Adding test for time base interpolation diff --git a/beep/__init__.py b/beep/__init__.py index b1a6f43f..c0db06ec 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.5.16" +__version__ = "2020.5.24" 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 c296332d..78981bbe 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup(name="beep", url="https://github.com/TRI-AMDD/beep", - version="2020.5.16", + version="2020.5.24", description=DESCRIPTION, long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown',