From 0ae747682fcfe08a3588dbd2e051667852887d0c Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Wed, 18 Nov 2020 10:39:59 -0700 Subject: [PATCH 1/6] Per #1572, delete the docs/version file as it is not needed here. --- met/docs/version | 1 - 1 file changed, 1 deletion(-) delete mode 100644 met/docs/version diff --git a/met/docs/version b/met/docs/version deleted file mode 100644 index 7af44b6c60..0000000000 --- a/met/docs/version +++ /dev/null @@ -1 +0,0 @@ -9.1 \ No newline at end of file From 49bece630d2f5473ed391d6eeb2417d14f273976 Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Wed, 18 Nov 2020 11:03:13 -0700 Subject: [PATCH 2/6] Per #1572, update the version number to 9.1.1. --- met/docs/conf.py | 4 ++-- met/src/basic/vx_util/util_constants.h | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/met/docs/conf.py b/met/docs/conf.py index 76a140f2ec..e058dda5c2 100644 --- a/met/docs/conf.py +++ b/met/docs/conf.py @@ -5,7 +5,7 @@ # https://www.sphinx-doc.org/en/master/usage/configuration.html # -- Path setup -------------------------------------------------------------- - + # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. @@ -20,7 +20,7 @@ project = 'MET' author = 'UCAR/NCAR, NOAA, CSU/CIRA, and CU/CIRES' author_list = 'Brown, B., Bullock, R., Fowler, T., Halley Gotway, J., Newman, K., Jensen, T.' -version = '9.1' +version = '9.1.1' verinfo = version release = f'{version}' release_year = '2020' diff --git a/met/src/basic/vx_util/util_constants.h b/met/src/basic/vx_util/util_constants.h index 50ded63fe7..6e2b34af1c 100644 --- a/met/src/basic/vx_util/util_constants.h +++ b/met/src/basic/vx_util/util_constants.h @@ -18,6 +18,7 @@ //////////////////////////////////////////////////////////////////////// // Released versions of MET +static const char met_version_9_1_1[] = "V9.1.1"; static const char met_version_9_1[] = "V9.1"; static const char met_version_9_0[] = "V9.0"; static const char met_version_8_1[] = "V8.1"; @@ -38,7 +39,7 @@ static const char met_version_1_1[] = "V1.1"; //////////////////////////////////////////////////////////////////////// -static const char * const met_version = met_version_9_1; +static const char * const met_version = met_version_9_1_1; static const char default_met_data_dir[] = "MET_BASE"; static const char txt_file_ext[] = ".txt"; static const char stat_file_ext[] = ".stat"; From f941bdf8483a5ba2de686e507aa1d7fa4aa0601a Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Wed, 18 Nov 2020 11:07:50 -0700 Subject: [PATCH 3/6] Per #1572, list the met-9.1.1 release date as 20201119 for the docs. --- met/docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/met/docs/conf.py b/met/docs/conf.py index e058dda5c2..a2912a7549 100644 --- a/met/docs/conf.py +++ b/met/docs/conf.py @@ -24,7 +24,7 @@ verinfo = version release = f'{version}' release_year = '2020' -release_date = f'{release_year}0810' +release_date = f'{release_year}1119' copyright = f'{release_year}, {author}' # -- General configuration --------------------------------------------------- From 13393ec11185098403e611c9180b056d0839714f Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Wed, 18 Nov 2020 11:52:28 -0700 Subject: [PATCH 4/6] Per #1572, add release notes for the met-9.1.1 verison. --- met/docs/Users_Guide/release-notes.rst | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/met/docs/Users_Guide/release-notes.rst b/met/docs/Users_Guide/release-notes.rst index 58abe1c786..873c4139ed 100644 --- a/met/docs/Users_Guide/release-notes.rst +++ b/met/docs/Users_Guide/release-notes.rst @@ -8,6 +8,20 @@ https://github.com/dtcenter/MET/issues Version |version| release notes (|release_date|) ------------------------------------------------ +- Fix Grid-Diag to correctly ignore missing data values (`#1562 `_). +- Fix ncdump in the MET Docker image (`#1554 `_). +- Fix bug in the MODE CTS output when running multiple convolution radii and thresholds (`#1547 `_). +- Fix Stat-Analysis python embedding when the python script has zero arguments (`#1537 `_). +- Fix ascii file list parsing logic (`#1484 `_). +- Add support for Gaussian grids in the vx_data2d_python library (`#1477 `_). +- Fix Ensemble-Stat logic when multiple ensemble members contain no valid data (`#1475 `_). +- Add error message to state that python embedding pickling logic is not yet supported (`#1472 `_). +- Fix TC-Gen to correctly handle the lead_window configuration file filtering option (`#1465 `_). +- Correct the madi2nc log message for ACARS input, not ACARS profiler (`#1409 `_). + +Version 9.1 release notes (20200810) +------------------------------------ + - Bugfixes: - All changes included in the `met-9.0.1 `_, `met-9.0.2 `_, and `met-9.0.3 `_ bugfix releases. From 6b1da04344026a3106d5910e182da2a9b19f8aab Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Wed, 18 Nov 2020 11:56:58 -0700 Subject: [PATCH 5/6] Per #1572, add release notes for met-9.1.1 version. --- met/docs/Users_Guide/release-notes.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/met/docs/Users_Guide/release-notes.rst b/met/docs/Users_Guide/release-notes.rst index 873c4139ed..4c4c8e5c15 100644 --- a/met/docs/Users_Guide/release-notes.rst +++ b/met/docs/Users_Guide/release-notes.rst @@ -8,6 +8,7 @@ https://github.com/dtcenter/MET/issues Version |version| release notes (|release_date|) ------------------------------------------------ +- See complete list of `GitHub Issues `_). - Fix Grid-Diag to correctly ignore missing data values (`#1562 `_). - Fix ncdump in the MET Docker image (`#1554 `_). - Fix bug in the MODE CTS output when running multiple convolution radii and thresholds (`#1547 `_). @@ -17,7 +18,7 @@ Version |version| release notes (|release_date|) - Fix Ensemble-Stat logic when multiple ensemble members contain no valid data (`#1475 `_). - Add error message to state that python embedding pickling logic is not yet supported (`#1472 `_). - Fix TC-Gen to correctly handle the lead_window configuration file filtering option (`#1465 `_). -- Correct the madi2nc log message for ACARS input, not ACARS profiler (`#1409 `_). +- Fix the madis2nc log message for ACARS input, not ACARS profiler input (`#1409 `_). Version 9.1 release notes (20200810) ------------------------------------ From 324aaa4bddd8f76690c400555edc7cf7720d78bb Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Wed, 18 Nov 2020 11:59:42 -0700 Subject: [PATCH 6/6] Per #1572, let's try to release met-9.1.1 today 11/18. --- met/docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/met/docs/conf.py b/met/docs/conf.py index a2912a7549..2c0f1b2123 100644 --- a/met/docs/conf.py +++ b/met/docs/conf.py @@ -24,7 +24,7 @@ verinfo = version release = f'{version}' release_year = '2020' -release_date = f'{release_year}1119' +release_date = f'{release_year}1118' copyright = f'{release_year}, {author}' # -- General configuration ---------------------------------------------------