Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to v0.11.0 #389

Merged
merged 7 commits into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 20 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion esmf_regrid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@
from .schemes import *


__version__ = "0.11.dev0"
__version__ = "0.11.0"
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down