Skip to content

Commit

Permalink
Feature #2677 v11.0.3 (#2678)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway authored Sep 8, 2023
1 parent 4200b67 commit 1795733
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
16 changes: 16 additions & 0 deletions docs/Users_Guide/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,22 @@ enhancement, or new feature (`MET GitHub issues <https://github.com/dtcenter/MET
Important issues are listed **in bold** for emphasis.


MET Version 11.0.3 release notes (20230908)
-------------------------------------------

.. note::
Version 11.0.3 is the final planned bugfix release for MET version 11.0. Please upgrade to a
newer version for additional bugfixes and enhancements and see the METplus
`release support policy <https://metplus.readthedocs.io/en/latest/Release_Guide/index.html#release-support-policy>`_
for additional details.

* Bugfixes:

* Bugfix: Fix the Clang compilation of MET version 11.0 (`#2514 <https://github.com/dtcenter/MET/issues/2514>`_).
* Bugfix: Fix logic for Python embedding with data censoring and/or conversion (`#2575 <https://github.com/dtcenter/MET/issues/2575>`_).
* Bugfix: Fix reading of upside-down CF-compliant NetCDF Rotated Lat/Lon data (`#2578 <https://github.com/dtcenter/MET/issues/2578>`_).
* Bugfix: Fix logic for computing the 100-th percentile (`#2644 <https://github.com/dtcenter/MET/issues/2644>`_).

MET Version 11.0.2 release notes (20230331)
-------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
3 changes: 2 additions & 1 deletion src/basic/vx_util/util_constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
////////////////////////////////////////////////////////////////////////

// Released versions of MET
static const char met_version_11_0_3[] = "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";
Expand All @@ -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";
Expand Down

0 comments on commit 1795733

Please sign in to comment.