From 7d6f568e8659109b5c8226f53dd27f5a5dd31f51 Mon Sep 17 00:00:00 2001 From: stephenworsley <49274989+stephenworsley@users.noreply.github.com> Date: Fri, 14 Oct 2022 09:32:50 +0100 Subject: [PATCH] Update to v0.5 (#214) * update to v0.5 * address review comments * update release date --- CHANGELOG.md | 19 +++++++++++++++++-- esmf_regrid/__init__.py | 2 +- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1e3421d..66297f60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,24 @@ 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.5] - 2022-10-14 -N/A +This release improves the support for features such as Bilinear regridding, +curvilinear grids and low resolution grids. + +### Added + +- [PR#148](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/148) + Added support for Bilinear regridding for unstructured regridding. +- [PR#165](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/165) + Added RefinedGridInfo and resolution keyword for unstructured regridders. +- [PR#166](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/166) + Made weights array handling more robust for different formats of + pre-computed weights matrices. +- [PR#175](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/175) + Add curvilinear support for unstructured regridders. +- [PR#208](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/208) + Unpin Python. ## [0.4] - 2022-02-24 diff --git a/esmf_regrid/__init__.py b/esmf_regrid/__init__.py index 4fa54b6f..b0994f3b 100644 --- a/esmf_regrid/__init__.py +++ b/esmf_regrid/__init__.py @@ -1,4 +1,4 @@ from .schemes import * -__version__ = "0.5.dev0" +__version__ = "0.5.0"