From 155822206afdb8d5cf779ba402af42c39ce0e392 Mon Sep 17 00:00:00 2001 From: jprestop Date: Mon, 16 May 2022 14:27:39 -0600 Subject: [PATCH] Feature 2162 v10.1.2 (#2163) * Per #2162, update versions and notes for the 10.1.2 bugfix release * Per #2162, update versions and notes for the 10.1.2 bugfix release * Per #2162, fixing syntax error * Add "METplus-Internal" before the issue number for clarity Co-authored-by: johnhg Co-authored-by: Julie Prestopnik Co-authored-by: johnhg --- met/docs/Users_Guide/release-notes.rst | 9 +++++++++ met/docs/conf.py | 4 ++-- met/src/basic/vx_util/util_constants.h | 3 ++- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/met/docs/Users_Guide/release-notes.rst b/met/docs/Users_Guide/release-notes.rst index 9252713b88..5d3385f0cd 100644 --- a/met/docs/Users_Guide/release-notes.rst +++ b/met/docs/Users_Guide/release-notes.rst @@ -5,6 +5,15 @@ When applicable, release notes are followed by the GitHub issue number which des enhancement, or new feature (`MET GitHub issues `_). Important issues are listed **in bold** for emphasis. +MET Version 10.1.2 release notes (20220516) +------------------------------------------- + +* Bugfixes: + + * Update static arrays with hard-coded size (`METplus-Internal #14 `_). + * Fix TC-Gen to only count misses from requested initialization hours and lead times (`#2148 `_). + + MET Version 10.1.1 release notes (20220419) ------------------------------------------- diff --git a/met/docs/conf.py b/met/docs/conf.py index ae0069a127..1ad9bb3d32 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 = 'Newman, K., J. Opatz, T. Jensen, J. Prestopnik, H. Soh, L. Goodrich, B. Brown, R. Bullock, J. Halley Gotway' -version = '10.1.1' +version = '10.1.2' verinfo = version release = f'{version}' release_year = '2022' -release_date = f'{release_year}-04-19' +release_date = f'{release_year}-05-16' 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 b59e7dc46a..2d334de261 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_10_1_2[] = "V10.1.2"; static const char met_version_10_1_1[] = "V10.1.1"; static const char met_version_10_1_0[] = "V10.1.0"; static const char met_version_10_0_0[] = "V10.0.0"; @@ -41,7 +42,7 @@ static const char met_version_1_1[] = "V1.1"; //////////////////////////////////////////////////////////////////////// -static const char * const met_version = met_version_10_1_1; +static const char * const met_version = met_version_10_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";