diff --git a/CHANGELOG.md b/CHANGELOG.md index 506213e..c0ccf42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,14 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/). ## Unreleased + +## v0.2.3 (2024-02-29) + +New contributors: + - @kjdoore + Fixed: - - Ensured all attributes are kept upon regridding (dataset, variable and coordinate attrs). - - Regridding to larger grid now result in NaNs at locations outside of starting data grid. + - Ensure all attributes are kept upon regridding (dataset, variable and coordinate attrs) ([#27](https://github.com/EXCITED-CO2/xarray-regrid/pull/27)). + - The target grid can now have coordinates sorted in decending order, instead of the regridding failing ([#29](https://github.com/EXCITED-CO2/xarray-regrid/pull/29)). + - Regridding to larger grid now result in NaNs at locations outside of starting data grid ([#33](https://github.com/EXCITED-CO2/xarray-regrid/pull/33)). Changed: - - Moved to the Ruff formatter, instead of black. + - Moved to the Ruff formatter, instead of black ([#27](https://github.com/EXCITED-CO2/xarray-regrid/pull/27)). -## v0.2.2 (20203-11-24) +## v0.2.2 (2023-11-24) Added: - CITATION.cff file for Zenodo integration. diff --git a/CITATION.cff b/CITATION.cff index fa006c4..c3c544d 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -14,6 +14,11 @@ authors: family-names: Liu orcid: 'https://orcid.org/0000-0002-1966-8460' affiliation: Netherlands eScience Center + - given-names: Keith + family-names: Doore + orcid: 'https://orcid.org/0000-0001-5035-4016' + affiliation: United States Geological Survey + repository-code: 'https://github.com/EXCITED-CO2/xarray-regrid' keywords: - xarray @@ -21,7 +26,7 @@ keywords: - regridding - conservative regridding license: Apache-2.0 -version: 0.2.2 +version: 0.2.3 date-released: '2023-11-24' abstract: > xarray-regrid can regrid (geospatial) data to a new diff --git a/src/xarray_regrid/__about__.py b/src/xarray_regrid/__about__.py index b5fdc75..d31c31e 100644 --- a/src/xarray_regrid/__about__.py +++ b/src/xarray_regrid/__about__.py @@ -1 +1 @@ -__version__ = "0.2.2" +__version__ = "0.2.3"