From bfb5e513f2e39e1cf8f28473d922cb0a1c742488 Mon Sep 17 00:00:00 2001 From: Iain Russell Date: Fri, 19 Jul 2024 15:10:30 +0100 Subject: [PATCH] Prepare 0.9.14.0 release --- CHANGELOG.rst | 14 ++++++++++++++ cfgrib/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index eb2aaf2..907225a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,20 @@ Changelog for cfgrib ==================== +0.9.14.0 (2024-07-19) +--------------------- + +- Added `coords_as_attributes` argument to `open_dataset()` to allow selected dimensions + to be stored as attributes rather than dimensions, allowing more heterogeneous data + to be encoded as an xarray dataset. + See `#394 `_. + +- Added valid_month dimension if monthlyVerificationDate and validityTime are available. + See `#393 `_. + +- Added uvRelativeToGrid to list of GRIB keys read by default. + See `#379 `_. + 0.9.13.0 (2024-06-27) --------------------- diff --git a/cfgrib/__init__.py b/cfgrib/__init__.py index 459bfe4..cf1f230 100644 --- a/cfgrib/__init__.py +++ b/cfgrib/__init__.py @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.9.13.0" +__version__ = "0.9.14.0" # cfgrib core API depends on the ECMWF ecCodes C-library only from .abc import Field, Fieldset, Index, MappingFieldset