From abcaf67cb32cec39e5c24043377a2aee53e02fa9 Mon Sep 17 00:00:00 2001 From: Patrick Herring Date: Tue, 28 Dec 2021 16:08:34 -0500 Subject: [PATCH] v2021.12.28.16 release --- CHANGES.md | 4 ++++ beep/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index c2c5d738..763992c0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ +v2021.12.28.16 +-------------- +* Update the diagnostic parameters + v2021.12.15.7 ------------- * Change suffix separator to better align with previous usage diff --git a/beep/__init__.py b/beep/__init__.py index 4c8c5a7f..0ed1b984 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.12.15.7" +__version__ = "2021.12.28.16" 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 07779036..a6880f03 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup(name="beep", url="https://github.com/TRI-AMDD/beep", - version="2021.12.15.7", + version="2021.12.28.16", description=description, long_description=long_description, long_description_content_type='text/markdown',