From cdef9c8503fdb8511fa1941210538ab8074888b8 Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Fri, 14 Jan 2022 17:53:47 -0700 Subject: [PATCH] Per #2011, add met-10.1.0-beta5 release notes. --- met/docs/Users_Guide/release-notes.rst | 21 +++++++++++++++++++++ met/docs/conf.py | 6 +++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/met/docs/Users_Guide/release-notes.rst b/met/docs/Users_Guide/release-notes.rst index eebd4f9e28..ac8a6bcd85 100644 --- a/met/docs/Users_Guide/release-notes.rst +++ b/met/docs/Users_Guide/release-notes.rst @@ -5,6 +5,27 @@ When applicable, release notes are followed by the GitHub issue number which describes the bugfix, enhancement, or new feature: `MET GitHub issues. `_ +MET Version 10.1.0-beta5 release notes (20220114) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +* Enhancements: + + * **Enhance GridStat to use OpenMP for efficient computation of neighborhood statistics by setting $OMP_NUM_THREADS** (`#1926 `_). + * **Enhance EnsembleStat and GenEnsProd to read all ensemble members from a single input file** (`#1695 `_). + * **Enhance TCGen to verify NHC tropical weather outlook shapefiles** (`#1810 `_). + * **Refine logic to prevent rounding shapefile points to the nearest grid point (affects GenVxMask -type shape masks)** (`#1810 `_). + * Enhance MADIS2NC to handle the 2016 updates to its format (`#1936 `_). + * Modify the interpretation of the message_type_group_map values to support the use of regular expressions (`#1974 `_). + * Address findings from the Cppcheck code analysis tool (`#1996 `_). + * Sort files read from directories to provide consistent behavior across platforms (`#1989 `_). + +* Bugfixes: + + * **Fix MTD to compute the CDIST_TRAVELLED value correctly** (`#1976 `_). + * Fix PointStat and GridStat to write VCNT output even if no VL1L2 or VAL1L2 output is requested (`#1991 `_). + * Fix GenVxMask to handle named grids and grid specification strings for -type grid (`#1993 `_). + * Fix IODA2NC to handle the same input file being provided multiple times (`#1965 `_). + MET Version 10.1.0-beta4 release notes (20211117) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/met/docs/conf.py b/met/docs/conf.py index c04f0ceeb3..775b1d88ea 100644 --- a/met/docs/conf.py +++ b/met/docs/conf.py @@ -20,11 +20,11 @@ project = 'MET' author = 'UCAR/NCAR, NOAA, CSU/CIRA, and CU/CIRES' author_list = 'Halley Gotway, J., K. Newman, H. Soh, J. Opatz, T. Jensen, J. Prestopnik, L. Goodrich, D. Fillmore, B. Brown, R. Bullock, T. Fowler' -version = '10.1.0-beta4' +version = '10.1.0-beta5' verinfo = version release = f'{version}' -release_year = '2021' -release_date = f'{release_year}-11-17' +release_year = '2022' +release_date = f'{release_year}-01-14' copyright = f'{release_year}, {author}' # -- General configuration ---------------------------------------------------