From d96f982690b4a9e28a203f2a77a152488774af9a Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Mon, 24 Jun 2024 13:24:20 -0600 Subject: [PATCH] Feature #2855 v11.1.1 (#2923) * Per #2855, add v11.1.1 release notes. * Per #2841, fix bold formatting of release notes. --- docs/Users_Guide/release-notes.rst | 23 +++++++++++++++++++++++ docs/conf.py | 6 +++--- src/basic/vx_util/util_constants.h | 3 ++- 3 files changed, 28 insertions(+), 4 deletions(-) diff --git a/docs/Users_Guide/release-notes.rst b/docs/Users_Guide/release-notes.rst index 30a115abc1..01aee88695 100644 --- a/docs/Users_Guide/release-notes.rst +++ b/docs/Users_Guide/release-notes.rst @@ -9,6 +9,29 @@ 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 11.1.1 release notes (20240621) +------------------------------------------- + + .. dropdown:: Bugfixes + + * Bugfix: Refine support for coordinate dimensions in CF-compliant NetCDF files (`#2638 `_). + * Bugfix: Fix support for NSIDC v4 Climate Data Record data on Polar Stereographic grids in CF-compliant NetCDF files (`#2652 `_). + * Bugfix: Fix the Point-Stat CNT header line typo causing duplicate SI_BCL column names (`#2730 `_). + * Bugfix: Fix MET to compile without the optional --enable-python configuration option (`#2760 `_). + * Bugfix: Fix the parsing of level values for GRIB2 template 4.48 data (`#2782 `_). + * **Bugfix: Fix the TC-Diag and TC-RMW tools to correctly handle the range and azimuth settings in range/azimuth grids** (`#2833 `_). + * **Bugfix: Fix TC-RMW to correct the tangential and radial wind computations** (`#2841 `_). + * Bugfix: Fix Ensemble-Stat's handling of climo data when verifying ensemble-derived probabilities (`#2856 `_). + * Bugfix: Update the logic of -qc option for ADP at point2grid (`#2867 `_). + * Bugfix: Some AOD data was filtered out without -qc option with point2grid (`#2884 `_). + * Bugfix: Fix inconsistent handling of point observation valid times processed through Python embedding (`#2897 `_). + * Bugfix: Fix PBL derivation bug in main_v11.1 by porting over fix from develop (`#2902 `_). + + .. dropdown:: Enhancements + + * **Eliminate the use of temporary files in the vx_config library** (`#2691 `_). + * Enhance Point2Grid to support modified quality control settings for smoke/dust AOD data in GOES-16/17 as of April 16, 2024 (`#2853 `_). + MET Version 11.1.0 release notes (20230731) ------------------------------------------- diff --git a/docs/conf.py b/docs/conf.py index dc186985bc..3bc60322ab 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -20,11 +20,11 @@ project = 'MET' author = 'UCAR/NCAR, NOAA, CSU/CIRA, and CU/CIRES' author_list = 'Jensen, T., J. Prestopnik, H. Soh, L. Goodrich, B. Brown, R. Bullock, J. Halley Gotway, K. Newman, J. Opatz' -version = '11.1.0' +version = '11.1.1' verinfo = version release = f'{version}' -release_year = '2023' -release_date = f'{release_year}-07-31' +release_year = '2024' +release_date = f'{release_year}-06-21' 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 4014cd3a27..1d2ad91907 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_1_1[] = "V11.1.1"; static const char met_version_11_1_0[] = "V11.1.0"; static const char met_version_11_0_0[] = "V11.0.0"; static const char met_version_10_1_0[] = "V10.1.0"; @@ -42,7 +43,7 @@ static const char met_version_1_1[] = "V1.1"; //////////////////////////////////////////////////////////////////////// -static const char * const met_version = met_version_11_1_0; +static const char * const met_version = met_version_11_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";