diff --git a/CHANGELOG.md b/CHANGELOG.md index 628b3fa..cda036a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.1.1](https://github.com/open-meteo/python-omfiles/compare/v1.1.0...v1.1.1) (2026-01-26) + + +### Bug Fixes + +* GaussianGrid shape of latitude and longitude should match grid shape ([#95](https://github.com/open-meteo/python-omfiles/issues/95)) ([c737607](https://github.com/open-meteo/python-omfiles/commit/c737607bf395b86bded875c7686380eef6b5bb3e)) +* pass shape tuple instead of reader to get_grid ([#96](https://github.com/open-meteo/python-omfiles/issues/96)) ([c844735](https://github.com/open-meteo/python-omfiles/commit/c84473519947fe4e0a1dbd2ca17f6d8297f7abe8)) + ## [1.1.0](https://github.com/open-meteo/python-omfiles/compare/v1.0.1...v1.1.0) (2026-01-19) diff --git a/Cargo.lock b/Cargo.lock index 0b85d16..bac9a3b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1110,7 +1110,7 @@ dependencies = [ [[package]] name = "python-omfiles" -version = "1.1.0" +version = "1.1.1" dependencies = [ "async-lock", "delegate", diff --git a/Cargo.toml b/Cargo.toml index 49e0d5e..9401e88 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "python-omfiles" -version = "1.1.0" +version = "1.1.1" edition = "2021" description = "Python bindings for the rust omfiles library" license = "GPL-2.0-only"