From 70b2e6e799c7c56afdee2800a8f5f3e9f1c2dd16 Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Tue, 28 Feb 2023 15:14:18 -0700 Subject: [PATCH] Feature #2473 v11.1.0-beta1 (#2479) --- docs/Users_Guide/release-notes.rst | 48 ++++++++++++++++++++++++++++-- docs/conf.py | 8 ++--- 2 files changed, 50 insertions(+), 6 deletions(-) diff --git a/docs/Users_Guide/release-notes.rst b/docs/Users_Guide/release-notes.rst index bcad89b962..c86119ff7a 100644 --- a/docs/Users_Guide/release-notes.rst +++ b/docs/Users_Guide/release-notes.rst @@ -9,6 +9,44 @@ 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.0-beta1 release notes (20230228) +------------------------------------------------- + + .. dropdown:: Repository, build, and test + + * Add modulefiles for supported systems to the repository (`#2415 `_). + * Add LICENSE.md to the repository (`#2461 `_). + * Update the copyright year to 2023 and increase the version number to 11.1.0 (`#2469 `_). + + .. dropdown:: Documentation + + * Enhance the Release Notes by adding dropdown menus (`#2146 `_). + + .. dropdown:: Enhancements + + * Convert the python list to the numpy array for the python embedding at the base class (`#2386 `_). + * Refine Python runtime environment (`#2388 `_). + * Upgrade to using Python 3.10.4 (`#2421 `_). + * **Enhance TC-Pairs to disable the output of consensus track members** (`#2429 `_). + + .. dropdown:: Bugfixes + + * Bugfix: Fix the MET CF-Compliant NetCDF library code to Polar Stereographic data from NSIDC Sea Ice Edge NetCDF files (`#2218 `_). + * Bugfix: Remove override keyword to avoid C++11 dependency (`#2380 `_). + * Bugfix: Fix ASCII2NC to not compute AOD 550 if other inputs are negative values (`#2383 `_). + * Bugfix: Fix PB2NC to report accurate total observation counts in log messages (`#2387 `_). + * Bugfix: Update the MET flowchart for version 11.0.0 (`#2389 `_). + * Bugfix: Fix issues with the met_compile_all.sh script and associated tar files (`#2390 `_). + * Bugfix: Correct definitions of NCEP grid numbers 172 and 220 (`#2399 `_). + * Bugfix: Address MET-11.0.0 SonarQube Blocker Bugs (`#2402 `_). + * Bugfix: Refine fix for handling empty configuration files (`#2408 `_). + * Bugfix: Fix time interpolation of monthly climatology data between December 15 and January 15 (`#2412 `_). + * Bugfix: Fix ASCII2NC to handle missing NDBC buoy location information (`#2426 `_). + * Bugfix: Fix the MET vx_pointdata_python library to handle MET_PYTHON_EXE for python embedding of point observations (`#2428 `_). + * Bugfix: Refine the regrid dictionary's data conversion and censoring operations and fix climo time matching logic for a single monthly climo file (`#2437 `_). + * Bugfix: Fix the creation of the MET User's Guide PDF (`#2449 `_). + * Bugfix: Fix inconsistent ASCII2NC AIRNOW location lookup logic (`#2452 `_). + MET Version 11.0.0 release notes (20221209) ------------------------------------------- @@ -26,8 +64,6 @@ MET Version 11.0.0 release notes (20221209) * Fix GHA documentation workflow (`#2282 `_). * Fix GHA warnings and update the version of actions (i.e. actions/checkout@v3) (`#2297 `_). - - .. dropdown:: Documentation * Create outline for the MET Contributor's Guide (`#1774 `_). @@ -143,4 +179,12 @@ MET Version 11.0.0 release notes (20221209) MET Upgrade Instructions ======================== +MET Version 11.0.1 upgrade instructions +--------------------------------------- + +* If running TC-Pairs to generate consensus tracks, update your TC-Pairs configuration file to include the new **write_members** option (`#2429 `_). + +MET Version 11.0.0 upgrade instructions +--------------------------------------- + * Ensemble post-processing has been fully removed from Ensemble-Stat in version 11.0.0. It can be performed using the Gen-Ens-Prod tool. diff --git a/docs/conf.py b/docs/conf.py index f24f32c6c0..04a1f71788 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,12 +19,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.1.0' +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-beta1' verinfo = version release = f'{version}' -release_year = '2022' -release_date = f'{release_year}-12-09' +release_year = '2023' +release_date = f'{release_year}-02-28' copyright = f'{release_year}, {author}' # -- General configuration ---------------------------------------------------