From 0bd64aa471f4b8d4e643a4aacfe36dffbfe9e8ad Mon Sep 17 00:00:00 2001 From: Bart Schilperoort Date: Thu, 26 Sep 2024 14:54:43 +0200 Subject: [PATCH] Bump version to 0.4.0 (#50) --- CHANGELOG.md | 3 +++ src/xarray_regrid/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49f23c3..78bb919 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/). ## Unreleased + +## 0.4.0 (2024-09-26) + Changed: - the "most common" routine has been overhauled, thanks to [@dcherian](https://github.com/dcherian). It is now much more efficient, and can operate fully lazily on dask arrays. Users do need to provide the expected groups (i.e., unique labels in the data), and the regridder is only available for `xr.DataArray` currently ([#46](https://github.com/xarray-contrib/xarray-regrid/pull/46)). - you can now use `None` as input to the `time_dim` kwarg in the regridding methods to force regridding over the time dimension (as long as it's numeric) ([#46](https://github.com/xarray-contrib/xarray-regrid/pull/46)). diff --git a/src/xarray_regrid/__init__.py b/src/xarray_regrid/__init__.py index b65ec3c..a4c10e8 100644 --- a/src/xarray_regrid/__init__.py +++ b/src/xarray_regrid/__init__.py @@ -9,4 +9,4 @@ "methods", ] -__version__ = "0.3.0" +__version__ = "0.4.0"