diff --git a/CHANGELOG.md b/CHANGELOG.md index 19c6afed..be23b5ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [Unreleased] +## [0.10] - 2024-05-31 ### Added @@ -13,6 +13,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/). Added support for saving and loading of `ESMFAreaWeighted`, `ESMFBilinear` and `ESMFNearest` regridders. [@stephenworsley](https://github.com/stephenworsley) +- [PR#319](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/319) + Added `CITATION.cff`. + [@bjlittle](https://github.com/bjlittle) ### Changed @@ -20,11 +23,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/). Moved the code for running benchmarks to `bm_runner.py` in line with iris benchmarks. [@stephenworsley](https://github.com/stephenworsley) +- [PR#293](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/293) + Enumerated method and normtype input. + [@ESadek-MO](https://github.com/ESadek-MO) ### Fixed + - [PR#239](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/239) Ensured dtype is preserved by regridding. [@stephenworsley](https://github.com/stephenworsley) +- [PR#353](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/353) + Fixed a bug which caused errors with ESMF versions 8.6 and higher. + [@stephenworsley](https://github.com/stephenworsley) +- [PR#338](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/338) + Fixed a potential memory leak when creating regridders. + [@stephenworsley](https://github.com/stephenworsley) ## [0.9] - 2023-11-03 diff --git a/esmf_regrid/__init__.py b/esmf_regrid/__init__.py index 850de104..4bc89b8e 100644 --- a/esmf_regrid/__init__.py +++ b/esmf_regrid/__init__.py @@ -12,4 +12,4 @@ from .schemes import * -__version__ = "0.10.dev0" +__version__ = "0.10.0"