diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 53b7bc9..c3f1463 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.2" + ".": "1.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d8733e8..7b3443e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ 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.0](https://github.com/open-meteo/python-omfiles/compare/v1.1.2...v1.2.0) (2026-04-15) + + +### Features + +* Add streaming write support to enable writing larger-than-ram dask-backed arrays and datasets ([#108](https://github.com/open-meteo/python-omfiles/issues/108)) ([9077abb](https://github.com/open-meteo/python-omfiles/commit/9077abb128bd4af0a4695e175db43b26b402d3b5)) +* implement scale_factor and add_offset getters for both readers ([#127](https://github.com/open-meteo/python-omfiles/issues/127)) ([a3628dd](https://github.com/open-meteo/python-omfiles/commit/a3628ddd27cd18c14ba763580cfe8533bde36fbf)) + + +### Bug Fixes + +* add tests for non contiguous behavior ([#123](https://github.com/open-meteo/python-omfiles/issues/123)) ([10ac68b](https://github.com/open-meteo/python-omfiles/commit/10ac68bea33f9630772c20a45e6abbef7b3f2e85)) +* hopefully fix windows test failure because of inaccessible files in psutil ([3491c10](https://github.com/open-meteo/python-omfiles/commit/3491c105c471d9359f6a850e6a81e3b70bb12691)) +* improve upstream build script ([#114](https://github.com/open-meteo/python-omfiles/issues/114)) ([43e8496](https://github.com/open-meteo/python-omfiles/commit/43e8496bdf1d07933819ce276b2ea89e4bf306b6)) + ## [1.1.2](https://github.com/open-meteo/python-omfiles/compare/v1.1.1...v1.1.2) (2026-03-11) diff --git a/Cargo.lock b/Cargo.lock index 491e8ed..ab2cf3a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1082,7 +1082,7 @@ dependencies = [ [[package]] name = "python-omfiles" -version = "1.1.2" +version = "1.2.0" dependencies = [ "async-lock", "delegate", diff --git a/Cargo.toml b/Cargo.toml index c191c74..56b2826 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "python-omfiles" -version = "1.1.2" +version = "1.2.0" 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 e9891b5..e85c1a2 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.2", # x-release-please-version +# "omfiles[fsspec]>=1.2.0", # 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 00e7e71..97598b4 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.2", # x-release-please-version +# "omfiles[fsspec]>=1.2.0", # 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 e9e4f6b..db08855 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.2", # x-release-please-version +# "omfiles[fsspec, grids]>=1.2.0", # x-release-please-version # "matplotlib", # "cartopy", # "scipy", diff --git a/examples/select_by_coordinates.py b/examples/select_by_coordinates.py index cbed213..8b15a27 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.2", # x-release-please-version +# "omfiles[grids,fsspec]>=1.2.0", # x-release-please-version # "matplotlib", # ] # /// diff --git a/examples/spatial_xarray.py b/examples/spatial_xarray.py index efbe59c..e2c21fd 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.2", # x-release-please-version +# "omfiles[fsspec,grids,xarray]>=1.2.0", # x-release-please-version # "matplotlib", # "cartopy", # ]