From 1795733b7905dadd1a9d4d6765788418a25266bf Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Fri, 8 Sep 2023 15:32:07 -0600 Subject: [PATCH] Feature #2677 v11.0.3 (#2678) --- docs/Users_Guide/release-notes.rst | 16 ++++++++++++++++ docs/conf.py | 4 ++-- src/basic/vx_util/util_constants.h | 3 ++- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/docs/Users_Guide/release-notes.rst b/docs/Users_Guide/release-notes.rst index e16aa539be..eb488c7e64 100644 --- a/docs/Users_Guide/release-notes.rst +++ b/docs/Users_Guide/release-notes.rst @@ -10,6 +10,22 @@ enhancement, or new feature (`MET GitHub issues `_ + for additional details. + +* Bugfixes: + + * Bugfix: Fix the Clang compilation of MET version 11.0 (`#2514 `_). + * Bugfix: Fix logic for Python embedding with data censoring and/or conversion (`#2575 `_). + * Bugfix: Fix reading of upside-down CF-compliant NetCDF Rotated Lat/Lon data (`#2578 `_). + * Bugfix: Fix logic for computing the 100-th percentile (`#2644 `_). + MET Version 11.0.2 release notes (20230331) ------------------------------------------- diff --git a/docs/conf.py b/docs/conf.py index efe4a392d2..c03d227544 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -20,12 +20,12 @@ project = 'MET' author = 'UCAR/NCAR, NOAA, CSU/CIRA, and CU/CIRES' author_list = 'Opatz, J., T. Jensen, J. Prestopnik, H. Soh, L. Goodrich, B. Brown, R. Bullock, J. Halley Gotway, K. Newman' -version = '11.0.2' +version = '11.0.3' verinfo = version release = f'{version}' release_year = '2023' -release_date = f'{release_year}-03-31' +release_date = f'{release_year}-09-08' copyright = f'{release_year}, {author}' # -- General configuration --------------------------------------------------- diff --git a/src/basic/vx_util/util_constants.h b/src/basic/vx_util/util_constants.h index 36357ba780..7ae2eed751 100644 --- a/src/basic/vx_util/util_constants.h +++ b/src/basic/vx_util/util_constants.h @@ -18,6 +18,7 @@ //////////////////////////////////////////////////////////////////////// // Released versions of MET +static const char met_version_11_0_3[] = "V11.0.3"; static const char met_version_11_0_2[] = "V11.0.2"; static const char met_version_11_0_1[] = "V11.0.1"; static const char met_version_11_0_0[] = "V11.0.0"; @@ -43,7 +44,7 @@ static const char met_version_1_1[] = "V1.1"; //////////////////////////////////////////////////////////////////////// -static const char * const met_version = met_version_11_0_2; +static const char * const met_version = met_version_11_0_3; static const char default_met_data_dir[] = "MET_BASE"; static const char txt_file_ext[] = ".txt"; static const char stat_file_ext[] = ".stat";