diff --git a/CHANGES.md b/CHANGES.md index c73082a4..3122729b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,13 @@ +v2020.11.4.14 +------------- +* Add parsing for files with paths in the protocol field +* change test bucket from beep-sync-test to beep-sync-test-stage +* Change file location for tutorial for safe processing +* Add assert to ensure that list of columns for regular interpolated cycles are as expected + + v2020.10.29.16 -------------- * Adding asserts to check for the interval information diff --git a/beep/__init__.py b/beep/__init__.py index e83c92db..64a0ddb6 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.10.29.16" +__version__ = "2020.11.4.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 30867bc9..5b74b7e9 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup(name="beep", url="https://github.com/TRI-AMDD/beep", - version="2020.10.29.16", + version="2020.11.4.14", description=description, long_description=long_description, long_description_content_type='text/markdown',