diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5fdd883..c4ddc74 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.0" + ".": "1.1.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 628b3fa..d0226e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ 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-02-19) + + +### Bug Fixes + +* avoid deprecation warning in test_codecs.py ([#101](https://github.com/open-meteo/python-omfiles/issues/101)) ([2d43cd6](https://github.com/open-meteo/python-omfiles/commit/2d43cd67ebb15bee56351cb20af2bfea833f395f)) +* 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" diff --git a/examples/readme_example.py b/examples/readme_example.py index 961a07a..fe970e9 100644 --- a/examples/readme_example.py +++ b/examples/readme_example.py @@ -3,7 +3,7 @@ # /// script # requires-python = ">=3.12" # dependencies = [ -# "omfiles[fsspec]>=1.1.0", # x-release-please-version +# "omfiles[fsspec]>=1.1.1", # x-release-please-version # ] # /// diff --git a/examples/regrid_ecmwf_ifs_hres_gaussian_O1280_to_0.1_degree.py b/examples/regrid_ecmwf_ifs_hres_gaussian_O1280_to_0.1_degree.py index 0f535ba..f629189 100644 --- a/examples/regrid_ecmwf_ifs_hres_gaussian_O1280_to_0.1_degree.py +++ b/examples/regrid_ecmwf_ifs_hres_gaussian_O1280_to_0.1_degree.py @@ -3,7 +3,7 @@ # /// script # requires-python = ">=3.12" # dependencies = [ -# "omfiles[fsspec]>=1.1.0", # x-release-please-version +# "omfiles[fsspec]>=1.1.1", # x-release-please-version # "matplotlib", # "cartopy", # "earthkit-regrid==0.5.0", diff --git a/examples/regrid_subset_of_projected_domain.py b/examples/regrid_subset_of_projected_domain.py index 85d7fa7..05a9cb9 100644 --- a/examples/regrid_subset_of_projected_domain.py +++ b/examples/regrid_subset_of_projected_domain.py @@ -3,7 +3,7 @@ # /// script # requires-python = ">=3.12" # dependencies = [ -# "omfiles[fsspec, grids]>=1.1.0", # x-release-please-version +# "omfiles[fsspec, grids]>=1.1.1", # x-release-please-version # "matplotlib", # "cartopy", # "scipy", diff --git a/examples/select_by_coordinates.py b/examples/select_by_coordinates.py index 76659ef..867ac3f 100644 --- a/examples/select_by_coordinates.py +++ b/examples/select_by_coordinates.py @@ -3,7 +3,7 @@ # /// script # requires-python = ">=3.12" # dependencies = [ -# "omfiles[grids,fsspec]>=1.1.0", # x-release-please-version +# "omfiles[grids,fsspec]>=1.1.1", # x-release-please-version # "matplotlib", # ] # /// diff --git a/examples/spatial_xarray.py b/examples/spatial_xarray.py index fd8d039..868ac20 100644 --- a/examples/spatial_xarray.py +++ b/examples/spatial_xarray.py @@ -3,7 +3,7 @@ # /// script # requires-python = ">=3.12" # dependencies = [ -# "omfiles[fsspec,grids,xarray]>=1.1.0", # x-release-please-version +# "omfiles[fsspec,grids,xarray]>=1.1.1", # x-release-please-version # "matplotlib", # "cartopy", # ]