From 0cefccf149634df372c25d0db2fd97ed68162174 Mon Sep 17 00:00:00 2001 From: johnhg Date: Wed, 10 Mar 2021 17:45:14 -0700 Subject: [PATCH] Feature 1710 v9.1.2 (#1711) * Per #1710, update the release notes and version numbers for the 9.1.2 release. * Per #1710, add a release note about the move to read the docs. --- met/docs/Users_Guide/release-notes.rst | 13 ++++++++++++- met/docs/conf.py | 6 +++--- met/src/basic/vx_util/util_constants.h | 3 ++- 3 files changed, 17 insertions(+), 5 deletions(-) diff --git a/met/docs/Users_Guide/release-notes.rst b/met/docs/Users_Guide/release-notes.rst index 36e3115d97..fdec4f86a3 100644 --- a/met/docs/Users_Guide/release-notes.rst +++ b/met/docs/Users_Guide/release-notes.rst @@ -5,7 +5,18 @@ When applicable, release notes are followed by the GitHub issue number which describes the bugfix, enhancement, or new feature: https://github.com/dtcenter/MET/issues -Version |version| release notes (|release_date|) +Version 9.1.2 release notes (20210310) +------------------------------------------------ + +- See complete list of `GitHub Issues `_. +- Enable the MET documentation to be published via `Read the Docs `_. +- Fix sporadic PB2NC segfaults for the -index command line option (`#1618 `_). +- Correct the climatological CDF value reported by Grid-Stat (`#1638 `_). +- The set_attr_accum option sets the lead time instead of the accumulation time (`#1646 `_). +- Stat-Analysis fails when aggregating ECNT line from Ensemble-Stat (`#1706 `_). +- The 1D histograms reported by Grid-Diag are incorrect when reading the same variable name from multiple data sources (`#1694 `_). + +Version 9.1.1 release notes (20201118) ------------------------------------------------ - See complete list of `GitHub Issues `_. diff --git a/met/docs/conf.py b/met/docs/conf.py index 2c0f1b2123..bec11592ac 100644 --- a/met/docs/conf.py +++ b/met/docs/conf.py @@ -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.1' +version = '9.1.2' verinfo = version release = f'{version}' -release_year = '2020' -release_date = f'{release_year}1118' +release_year = '2021' +release_date = f'{release_year}0310' copyright = f'{release_year}, {author}' # -- General configuration --------------------------------------------------- diff --git a/met/src/basic/vx_util/util_constants.h b/met/src/basic/vx_util/util_constants.h index 6e2b34af1c..fb4e650c54 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_2[] = "V9.1.2"; 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"; @@ -39,7 +40,7 @@ static const char met_version_1_1[] = "V1.1"; //////////////////////////////////////////////////////////////////////// -static const char * const met_version = met_version_9_1_1; +static const char * const met_version = met_version_9_1_2; static const char default_met_data_dir[] = "MET_BASE"; static const char txt_file_ext[] = ".txt"; static const char stat_file_ext[] = ".stat";