Added
- [PR198](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/198)
As a result of refactoring regridders to all derive from the same class,
`_ESMFRegridder`, functionality has been added to the `ESMFAreaWeighted`
scheme and a new scheme, `ESMFBilinear`, has been added.
These schemes are now able to handle both grids and meshes.
Additionally, they are also able to specify the resolution of cells in
these grids with the `src_resolution` and `tgt_resolution` keywords.
[stephenworsley](https://github.com/stephenworsley) with extensive review
work from [trexfeathers](https://github.com/trexfeathers)
- [PR266](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/266)
Added Nearest neighbour regridding.
[stephenworsley](https://github.com/stephenworsley)
[HGWright](https://github.com/HGWright)
- [PR272](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/272)
Add support for Python 3.11.
[stephenworsley](https://github.com/stephenworsley)
Changed
- [PR198](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/198)
Refactor regridders to all derive from the same class `_ESMFRegridder`.
For the sake of consistency, the resolution keyword in
`GridToMeshESMFRegridder` and `MeshToGridESMFRegridder` have been
replaced by `src_resolution` and `tgt_resolution` respectively.
[stephenworsley](https://github.com/stephenworsley) with extensive review
work from [trexfeathers](https://github.com/trexfeathers)
Removed
- [PR272](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/272)
Remove support for Python 3.8.
[stephenworsley](https://github.com/stephenworsley)
Fixed
- [PR258](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/258)
Allow the documentation to build properly.
[zklaus](https://github.com/zklaus)