diff --git a/CHANGES.md b/CHANGES.md index e669e1bb..cad0d4a6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,12 @@ +v2020.10.13.11 +-------------- +* Fixes for featurization bugs - Patrick Herring +* Documentation and clean up for `from_file` methods in structuring - Thanks Alex Dunn! +* Biologic to maccor converter draft - Thanks Will Powelson! + + v2020.9.29.19 ------------- * Update version number to include hour so that packages can be released more than once a day diff --git a/beep/__init__.py b/beep/__init__.py index a4938086..62682d32 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.9.29.19" +__version__ = "2020.10.13.11" 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 d8f827d3..3f3a4720 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup(name="beep", url="https://github.com/TRI-AMDD/beep", - version="2020.9.29.19", + version="2020.10.13.11", description=DESCRIPTION, long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown',