From 2826feb51c25d301f43f30b13fc5c841bd6ef299 Mon Sep 17 00:00:00 2001 From: johnhg Date: Fri, 20 Nov 2020 09:31:22 -0700 Subject: [PATCH] Update main_v9.1-ref after 1572 (v9.1.1 release) (#1578) * Add debug level 4 message to list out the number of GRIB2 records inventoried. This helps debugging issues with MET potentially not reading all input GRIB2 records on WCOSS. * Bugfix 1554 main_v9.1 ncdump (#1555) * Bugfix 1562 main_v9.1 grid_diag (#1563) * Per #1562, check for bad data values before adding data to the PDF's for grid_diag. * Per #1562, removing the poly = CONUS.poly mask from GridDiagConfig_TMP. That settting masked a problem in the handling of missing data. Exercising the mask.poly option is tested in another unit test. This will change the output and break the nightly build, but that's good since we'll do more thorough testing. * Per #1508, change the verbosity in unit_tc_gen.xml from -v 2 to -v 5 to print out some additional log messages that may help in debugging the intermittent file list failure. * Feature 1572 v9.1.1 (#1573) * Per #1572, delete the docs/version file as it is not needed here. * Per #1572, update the version number to 9.1.1. * Per #1572, list the met-9.1.1 release date as 20201119 for the docs. * Per #1572, add release notes for the met-9.1.1 verison. * Per #1572, add release notes for met-9.1.1 version. * Per #1572, let's try to release met-9.1.1 today 11/18. * Correct GitHub link. * Fix small typo in release notes. --- met/docs/Users_Guide/release-notes.rst | 15 +++++++++++++++ met/docs/conf.py | 6 +++--- met/docs/version | 1 - met/src/basic/vx_util/util_constants.h | 3 ++- 4 files changed, 20 insertions(+), 5 deletions(-) delete mode 100644 met/docs/version diff --git a/met/docs/Users_Guide/release-notes.rst b/met/docs/Users_Guide/release-notes.rst index 58abe1c786..36e3115d97 100644 --- a/met/docs/Users_Guide/release-notes.rst +++ b/met/docs/Users_Guide/release-notes.rst @@ -8,6 +8,21 @@ 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 `_). +- 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 `_). +- Fix the madis2nc log message for ACARS input, not ACARS profiler input (`#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. diff --git a/met/docs/conf.py b/met/docs/conf.py index 76a140f2ec..2c0f1b2123 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,11 +20,11 @@ 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' -release_date = f'{release_year}0810' +release_date = f'{release_year}1118' copyright = f'{release_year}, {author}' # -- General configuration --------------------------------------------------- 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 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";