Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature 2162 v10.1.2 #2163

Merged
merged 4 commits into from
May 16, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions met/docs/Users_Guide/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ When applicable, release notes are followed by the GitHub issue number which des
enhancement, or new feature (`MET GitHub issues <https://github.com/dtcenter/MET/issues>`_).
Important issues are listed **in bold** for emphasis.

MET Version 10.1.2 release notes (20220516)
-------------------------------------------

* Bugfixes:

* Update static arrays with hard-coded size (`#14 <https://github.com/dtcenter/METplus-Internal/issues/14>`_).
jprestop marked this conversation as resolved.
Show resolved Hide resolved
* Fix TC-Gen to only count misses from requested initialization hours and lead times (`#2148 <https://github.com/dtcenter/MET/issues/2148>`_).


MET Version 10.1.1 release notes (20220419)
-------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions met/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
project = 'MET'
author = 'UCAR/NCAR, NOAA, CSU/CIRA, and CU/CIRES'
author_list = 'Newman, K., J. Opatz, T. Jensen, J. Prestopnik, H. Soh, L. Goodrich, B. Brown, R. Bullock, J. Halley Gotway'
version = '10.1.1'
version = '10.1.2'
verinfo = version
release = f'{version}'
release_year = '2022'
release_date = f'{release_year}-04-19'
release_date = f'{release_year}-05-16'
copyright = f'{release_year}, {author}'

# -- General configuration ---------------------------------------------------
Expand Down
3 changes: 2 additions & 1 deletion met/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_10_1_2[] = "V10.1.2";
static const char met_version_10_1_1[] = "V10.1.1";
static const char met_version_10_1_0[] = "V10.1.0";
static const char met_version_10_0_0[] = "V10.0.0";
Expand All @@ -41,7 +42,7 @@ static const char met_version_1_1[] = "V1.1";

////////////////////////////////////////////////////////////////////////

static const char * const met_version = met_version_10_1_1;
static const char * const met_version = met_version_10_1_2;
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