From 77c43b1dbcc366b138de38607af18c975e1f87da Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Thu, 7 Sep 2023 16:28:23 -0600 Subject: [PATCH] Per #2677, add release notes for the 11.0.3 bugfix release. --- docs/Users_Guide/release-notes.rst | 10 ++++++++++ docs/conf.py | 4 ++-- src/basic/vx_util/util_constants.h | 3 ++- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/docs/Users_Guide/release-notes.rst b/docs/Users_Guide/release-notes.rst index e16aa539be..eed0df83c9 100644 --- a/docs/Users_Guide/release-notes.rst +++ b/docs/Users_Guide/release-notes.rst @@ -10,6 +10,16 @@ enhancement, or new feature (`MET GitHub issues `_). + * 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..c6411398d2 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_2[] = "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";