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