diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c3f14639..41ea87d7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.2.0" + ".": "1.2.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 82e32977..34cedf41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ 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.2.1](https://github.com/open-meteo/python-omfiles/compare/v1.2.0...v1.2.1) (2026-06-19) + + +### Bug Fixes + +* array not contiguous error in older dask versions ([#146](https://github.com/open-meteo/python-omfiles/issues/146)) ([2c17272](https://github.com/open-meteo/python-omfiles/commit/2c1727231b46fda1664caf70848303ad39dea1e1)) +* **ci:** min dependencies test was not correctly executed ([4eea44f](https://github.com/open-meteo/python-omfiles/commit/4eea44fea20cab7a5f4fdfcf7cdd07b0a0023bc4)) +* **deps:** bump development dependencies ([1bac146](https://github.com/open-meteo/python-omfiles/commit/1bac14614ea3b523a50c04ccdb4fb2c92a9e6933)) +* **deps:** update aiohttp ([#153](https://github.com/open-meteo/python-omfiles/issues/153)) ([2244115](https://github.com/open-meteo/python-omfiles/commit/2244115f5a1d159f01d4c0126ec8daf81293c71c)) +* **deps:** update pyo3 to 0.29 ([#152](https://github.com/open-meteo/python-omfiles/issues/152)) ([17a23ea](https://github.com/open-meteo/python-omfiles/commit/17a23eacfb0969da7122d0f3efa0dbf3c65f8615)) +* xarray data_run example ([#141](https://github.com/open-meteo/python-omfiles/issues/141)) ([943c47b](https://github.com/open-meteo/python-omfiles/commit/943c47bfca2d968aaa19caf9c5b495b454e664fd)) + ## [1.2.0](https://github.com/open-meteo/python-omfiles/compare/v1.1.2...v1.2.0) (2026-04-21) diff --git a/Cargo.lock b/Cargo.lock index ba2569cd..17af8857 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1079,7 +1079,7 @@ dependencies = [ [[package]] name = "python-omfiles" -version = "1.2.0" +version = "1.2.1" dependencies = [ "async-lock", "delegate", diff --git a/Cargo.toml b/Cargo.toml index 8925d6ec..f7d0b828 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "python-omfiles" -version = "1.2.0" +version = "1.2.1" edition = "2021" description = "Python bindings for the rust omfiles library" license = "GPL-2.0-only" diff --git a/examples/plot_map.py b/examples/plot_map.py index 99036a3e..f0567851 100755 --- a/examples/plot_map.py +++ b/examples/plot_map.py @@ -3,7 +3,7 @@ # /// script # requires-python = ">=3.12" # dependencies = [ -# "omfiles[fsspec,grids]>=1.2.0", # x-release-please-version +# "omfiles[fsspec,grids]>=1.2.1", # x-release-please-version # "matplotlib", # "cartopy", # ] diff --git a/examples/readme_example.py b/examples/readme_example.py index e85c1a26..23298805 100644 --- a/examples/readme_example.py +++ b/examples/readme_example.py @@ -3,7 +3,7 @@ # /// script # requires-python = ">=3.12" # dependencies = [ -# "omfiles[fsspec]>=1.2.0", # x-release-please-version +# "omfiles[fsspec]>=1.2.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 97598b41..4b03b3b8 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.2.0", # x-release-please-version +# "omfiles[fsspec]>=1.2.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 db088553..49111936 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.2.0", # x-release-please-version +# "omfiles[fsspec, grids]>=1.2.1", # x-release-please-version # "matplotlib", # "cartopy", # "scipy", diff --git a/examples/select_by_coordinates.py b/examples/select_by_coordinates.py index 8b15a275..3d85a64f 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.2.0", # x-release-please-version +# "omfiles[grids,fsspec]>=1.2.1", # x-release-please-version # "matplotlib", # ] # /// diff --git a/examples/xarray_data_run.py b/examples/xarray_data_run.py index c1361aa4..c23069d3 100644 --- a/examples/xarray_data_run.py +++ b/examples/xarray_data_run.py @@ -3,7 +3,7 @@ # /// script # requires-python = ">=3.12" # dependencies = [ -# "omfiles[fsspec,grids,xarray]>=1.2.0", # x-release-please-version +# "omfiles[fsspec,grids,xarray]>=1.2.1", # x-release-please-version # "matplotlib", # ] # /// diff --git a/examples/xarray_spatial.py b/examples/xarray_spatial.py index b3a1f997..b276912b 100644 --- a/examples/xarray_spatial.py +++ b/examples/xarray_spatial.py @@ -3,7 +3,7 @@ # /// script # requires-python = ">=3.12" # dependencies = [ -# "omfiles[fsspec,grids,xarray]>=1.2.0", # x-release-please-version +# "omfiles[fsspec,grids,xarray]>=1.2.1", # x-release-please-version # "matplotlib", # "cartopy", # ]