diff --git a/CHANGELOG.md b/CHANGELOG.md index 37629b84..c84b03c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,11 +3,13 @@ Automatically updated by [python-semantic-release](https://python-semantic-release.readthedocs.io/en/latest/) with commit parsing of [angular commits](https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#commits). -## Unreleased + +## v0.3.2 (2024-04-23) ### 📦️ Build ### 🧰 Chores / Maintenance * fix semantic release action ([`6b12799`](https://github.com/mdtanker/polartoolkit/commit/6b12799d984917e9e4693bf8003c6869fc7f350d)) - +### 🐛 Bug Fixes +* reduce accuracy check for test resampling grids ([`93fca6f`](https://github.com/mdtanker/polartoolkit/commit/93fca6f44b69ae46672fcd74169d2c86d725a062)) ## v0.3.1 (2024-02-22) ### 📦️ Build diff --git a/pyproject.toml b/pyproject.toml index 7af9fa32..3ee88526 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ classifiers = [ "Typing :: Typed", ] readme = "README.md" -version = "0.3.1" +version = "0.3.2" license = {file = "LICENSE"} keywords = ["cryosphere", "antarctica", "arctic", "greenland", "maps", "plotting", "pygmt", "cross-section"] diff --git a/src/polartoolkit/__init__.py b/src/polartoolkit/__init__.py index b2d565ad..d1896bd0 100644 --- a/src/polartoolkit/__init__.py +++ b/src/polartoolkit/__init__.py @@ -9,4 +9,4 @@ from __future__ import annotations -__version__ = "0.3.1" +__version__ = "0.3.2"