Skip to content

Commit

Permalink
Feature #2318 v10.0.2 (#2319)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway authored Oct 28, 2022
1 parent 894938b commit 273eb8e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
11 changes: 10 additions & 1 deletion met/docs/Users_Guide/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ describes the bugfix, enhancement, or new feature:
MET Version |version| release notes (|release_date|)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

* Bugfixes:

* **Fix Stat-Analysis aggregation of the neighborhood statistics line types** (`#2271 <http://github.com/dtcenter/MET/issues/2271>`_)
* Fix support for int64 NetCDF variable types (`#2123 <http://github.com/dtcenter/MET/issues/2123>`_)
* Fix regression test differences in pb2nc and ioda2nc output (`#2102 <http://github.com/dtcenter/MET/issues/2102>`_)

MET Version 10.0.1 release notes (2021-12-01)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

* Bugfixes:

* **Fix MTD to compute the CDIST_TRAVELLED value correctly** (`#1976 <http://github.com/dtcenter/MET/issues/1976>`_)
Expand All @@ -20,7 +29,7 @@ MET Version |version| release notes (|release_date|)
* Fix the Plot-Point-Obs documentation to remove the duplicate configuration section (`#1789 <http://github.com/dtcenter/MET/issues/1789>`_).

MET Version 10.0.0 release notes (2021-05-10)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

* Repository and build:

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 = '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.0.1'
version = '10.0.2'
verinfo = version
release = f'{version}'
release_year = '2021'
release_date = f'{release_year}-12-01'
release_year = '2022'
release_date = f'{release_year}-10-27'
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_0_2[] = "V10.0.2";
static const char met_version_10_0_1[] = "V10.0.1";
static const char met_version_10_0_0[] = "V10.0.0";
static const char met_version_9_1[] = "V9.1";
Expand All @@ -40,7 +41,7 @@ static const char met_version_1_1[] = "V1.1";

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

static const char * const met_version = met_version_10_0_1;
static const char * const met_version = met_version_10_0_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

0 comments on commit 273eb8e

Please sign in to comment.