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 1572 v9.1.1 #1573

Merged
merged 6 commits into from
Nov 18, 2020
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
15 changes: 15 additions & 0 deletions met/docs/Users_Guide/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,21 @@ https://github.com/dtcenter/MET/issues
Version |version| release notes (|release_date|)
------------------------------------------------

- See complete list of `GitHub Issues <https://github.com/dtcenter/MET/issues?q=is%3Aissue+milestone%3A%22MET+9.1.1+%28bugfix%29%22+is%3Aclosed>`_).
- Fix Grid-Diag to correctly ignore missing data values (`#1562 <http://github.com/dtcenter/MET/issues/1562>`_).
- Fix ncdump in the MET Docker image (`#1554 <http://github.com/dtcenter/MET/issues/1554>`_).
- Fix bug in the MODE CTS output when running multiple convolution radii and thresholds (`#1547 <http://github.com/dtcenter/MET/issues/1547>`_).
- Fix Stat-Analysis python embedding when the python script has zero arguments (`#1537 <http://github.com/dtcenter/MET/issues/1537>`_).
- Fix ascii file list parsing logic (`#1484 <http://github.com/dtcenter/MET/issues/1484>`_).
- Add support for Gaussian grids in the vx_data2d_python library (`#1477 <http://github.com/dtcenter/MET/issues/1477>`_).
- Fix Ensemble-Stat logic when multiple ensemble members contain no valid data (`#1475 <http://github.com/dtcenter/MET/issues/1475>`_).
- Add error message to state that python embedding pickling logic is not yet supported (`#1472 <http://github.com/dtcenter/MET/issues/1472>`_).
- Fix TC-Gen to correctly handle the lead_window configuration file filtering option (`#1465 <http://github.com/dtcenter/MET/issues/1465>`_).
- Fix the madis2nc log message for ACARS input, not ACARS profiler input (`#1409 <http://github.com/dtcenter/MET/issues/1409>`_).

Version 9.1 release notes (20200810)
------------------------------------

- Bugfixes:
- All changes included in the `met-9.0.1 <https://github.com/dtcenter/MET/milestone/64?closed=1>`_, `met-9.0.2 <https://github.com/dtcenter/MET/milestone/65?closed=1>`_, and `met-9.0.3 <https://github.com/dtcenter/MET/milestone/66?closed=1>`_ bugfix releases.

Expand Down
6 changes: 3 additions & 3 deletions met/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html

# -- Path setup --------------------------------------------------------------

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
Expand All @@ -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'
version = '9.1.1'
verinfo = version
release = f'{version}'
release_year = '2020'
release_date = f'{release_year}0810'
release_date = f'{release_year}1118'
copyright = f'{release_year}, {author}'

# -- General configuration ---------------------------------------------------
Expand Down
1 change: 0 additions & 1 deletion met/docs/version

This file was deleted.

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_1[] = "V9.1.1";
static const char met_version_9_1[] = "V9.1";
static const char met_version_9_0[] = "V9.0";
static const char met_version_8_1[] = "V8.1";
Expand All @@ -38,7 +39,7 @@ static const char met_version_1_1[] = "V1.1";

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

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