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 1710 v9.1.2 #1711

Merged
merged 2 commits into from
Mar 11, 2021
Merged
Show file tree
Hide file tree
Changes from all 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
13 changes: 12 additions & 1 deletion met/docs/Users_Guide/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,18 @@ When applicable, release notes are followed by the GitHub issue number which
describes the bugfix, enhancement, or new feature:
https://github.com/dtcenter/MET/issues

Version |version| release notes (|release_date|)
Version 9.1.2 release notes (20210310)
------------------------------------------------

- See complete list of `GitHub Issues <https://github.com/NCAR/MET/milestone/70?closed=1>`_.
- Enable the MET documentation to be published via `Read the Docs <https://met.readthedocs.io/en/latest/>`_.
- Fix sporadic PB2NC segfaults for the -index command line option (`#1618 <http://github.com/dtcenter/MET/issues/1618>`_).
- Correct the climatological CDF value reported by Grid-Stat (`#1638 <http://github.com/dtcenter/MET/issues/1638>`_).
- The set_attr_accum option sets the lead time instead of the accumulation time (`#1646 <http://github.com/dtcenter/MET/issues/1646>`_).
- Stat-Analysis fails when aggregating ECNT line from Ensemble-Stat (`#1706 <http://github.com/dtcenter/MET/issues/1706>`_).
- The 1D histograms reported by Grid-Diag are incorrect when reading the same variable name from multiple data sources (`#1694 <http://github.com/dtcenter/MET/issues/1694>`_).

Version 9.1.1 release notes (20201118)
------------------------------------------------

- See complete list of `GitHub Issues <https://github.com/NCAR/MET/milestone/68?closed=1>`_.
Expand Down
6 changes: 3 additions & 3 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 = 'Brown, B., Bullock, R., Fowler, T., Halley Gotway, J., Newman, K., Jensen, T.'
version = '9.1.1'
version = '9.1.2'
verinfo = version
release = f'{version}'
release_year = '2020'
release_date = f'{release_year}1118'
release_year = '2021'
release_date = f'{release_year}0310'
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_9_1_2[] = "V9.1.2";
static const char met_version_9_1_1[] = "V9.1.1";
static const char met_version_9_1[] = "V9.1";
static const char met_version_9_0[] = "V9.0";
Expand All @@ -39,7 +40,7 @@ static const char met_version_1_1[] = "V1.1";

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

static const char * const met_version = met_version_9_1_1;
static const char * const met_version = met_version_9_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