From c4e99139039e101216c3147b6cce4eb6dd1469a0 Mon Sep 17 00:00:00 2001 From: stephenworsley <49274989+stephenworsley@users.noreply.github.com> Date: Wed, 31 Jul 2024 16:06:18 +0100 Subject: [PATCH] Update to v0.11.0 (#389) * update changelog and version number for v0.11.0 * fix changelog version * attempt import fix * undo import change * refresh nox cache * revert noxfile * revert noxfile --- CHANGELOG.md | 27 ++++++++++++++++++++------- esmf_regrid/__init__.py | 2 +- noxfile.py | 2 +- 3 files changed, 22 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd53b5c5..3ac98733 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,26 @@ 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/). + + +## [0.11] - 2024-07-31 + +### Fixed + +- [PR#385](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/385) + Fixed bug when connectivities are described by non-masked arrays. + [@stephenworsley](https://github.com/stephenworsley) +- [PR#387](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/387) + Fixed incompatibilities with changes to iris API in v3.10.0. + [@stephenworsley](https://github.com/stephenworsley) + +### Added + +- [PR#276](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/276) + Allow regridding for grids defined on coordinates without bounds for + nearest neighbour and bilinear methods. + [@stephenworsley](https://github.com/stephenworsley) + ## [0.10] - 2024-05-31 ### Added @@ -51,13 +71,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/). Added support for Mesh to Mesh regridding. [@HGWright](https://github.com/HGWright) -### Added - -- [PR#276](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/276) - Allow regridding for grids defined on coordinates without bounds for - nearest neighbour and bilinear methods. - [@stephenworsley](https://github.com/stephenworsley) - ### Fixed - [PR#301](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/301) diff --git a/esmf_regrid/__init__.py b/esmf_regrid/__init__.py index dab1d77a..1e05b45e 100644 --- a/esmf_regrid/__init__.py +++ b/esmf_regrid/__init__.py @@ -27,4 +27,4 @@ from .schemes import * -__version__ = "0.11.dev0" +__version__ = "0.11.0" diff --git a/noxfile.py b/noxfile.py index 2cefbf00..19b773fa 100644 --- a/noxfile.py +++ b/noxfile.py @@ -18,7 +18,7 @@ #: Default to reusing any pre-existing nox environments. -nox.options.reuse_existing_virtualenvs = True +nox.options.reuse_existing_virtualenvs = False #: Name of the package to test. PACKAGE = "esmf_regrid"