From d4980b9108d68ed70ca5b337ac8ca9229252b504 Mon Sep 17 00:00:00 2001 From: Bart Schilperoort Date: Thu, 5 Oct 2023 12:53:59 +0200 Subject: [PATCH] Bump version. Add acknowledgement. --- CHANGELOG.md | 4 ++++ README.md | 4 ++++ src/xarray_regrid/__about__.py | 2 +- src/xarray_regrid/__init__.py | 2 -- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b68d7c..1195d90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/). ## Unreleased +## v0.2.1 (2023-09-05) + +Fixed: + - Datasets containing NaN values can now be regridded using the conservative method. This previously produced only NaN values. ## v0.2.0 (2023-09-02) diff --git a/README.md b/README.md index a7074d0..05f9aac 100644 --- a/README.md +++ b/README.md @@ -40,3 +40,7 @@ You can install this environment using the `environment.yml` file in this reposi ```sh micromamba create -n environment_name -f environment.yml ``` + +## Acknowledgements + +This package was developed under Netherlands eScience Center grant [NLESC.OEC.2022.017](https://research-software-directory.org/projects/excited). diff --git a/src/xarray_regrid/__about__.py b/src/xarray_regrid/__about__.py index d3ec452..3ced358 100644 --- a/src/xarray_regrid/__about__.py +++ b/src/xarray_regrid/__about__.py @@ -1 +1 @@ -__version__ = "0.2.0" +__version__ = "0.2.1" diff --git a/src/xarray_regrid/__init__.py b/src/xarray_regrid/__init__.py index e73580d..e46e3ea 100644 --- a/src/xarray_regrid/__init__.py +++ b/src/xarray_regrid/__init__.py @@ -8,5 +8,3 @@ "create_regridding_dataset", "methods", ] - -__version__ = "0.2.0"