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";