From f08559a0df27b61d7764fd1210fd3ce35f978cfd Mon Sep 17 00:00:00 2001 From: jprestop Date: Thu, 30 Mar 2023 15:23:02 -0600 Subject: [PATCH] Feature 2496 v11.0.2 (#2497) * Updated release notes for 11.0.2 bugfix release * Updating date and version * Update docs/Users_Guide/release-notes.rst Co-authored-by: John Halley Gotway * Update docs/Users_Guide/release-notes.rst Co-authored-by: John Halley Gotway --------- Co-authored-by: John Halley Gotway --- docs/Users_Guide/release-notes.rst | 8 ++++++++ docs/conf.py | 4 ++-- src/basic/vx_util/util_constants.h | 1 + 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/docs/Users_Guide/release-notes.rst b/docs/Users_Guide/release-notes.rst index 740e208dc4..de74bb598a 100644 --- a/docs/Users_Guide/release-notes.rst +++ b/docs/Users_Guide/release-notes.rst @@ -9,6 +9,14 @@ 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.0.2 release notes (20230330) +------------------------------------------- + +* Bugfixes: + + * Bugfix: Fix support for the YYYYMMDD format in NetCDF level timestrings (`#2482 `_). + * Bugfix: AERONET the lat/lon is not changed with different station ID (`#2493 `_). + MET Version 11.0.1 release notes (20230228) ------------------------------------------- diff --git a/docs/conf.py b/docs/conf.py index fb87a48861..5f4ac0a3de 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 = 'Opatz, J., T. Jensen, J. Prestopnik, H. Soh, L. Goodrich, B. Brown, R. Bullock, J. Halley Gotway, K. Newman' -version = '11.0.1' +version = '11.0.2' verinfo = version release = f'{version}' release_year = '2023' -release_date = f'{release_year}-02-28' +release_date = f'{release_year}-03-30' 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 e7d86d38ad..eff9e8ebdc 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.2"; static const char met_version_11_0_1[] = "V11.0.1"; static const char met_version_11_0_0[] = "V11.0.0"; static const char met_version_10_1_0[] = "V10.1.0";