From 4d1844c243304a2e7c8f92d1fccdbc4e5072c898 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Apr 2026 15:26:15 +0000 Subject: [PATCH] chore(main): release 1.2.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 20 +++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- examples/plot_map.py | 2 +- examples/readme_example.py | 2 +- ...f_ifs_hres_gaussian_O1280_to_0.1_degree.py | 2 +- examples/regrid_subset_of_projected_domain.py | 2 +- examples/select_by_coordinates.py | 2 +- examples/spatial_xarray.py | 2 +- 10 files changed, 29 insertions(+), 9 deletions(-) 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..82e3297 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,26 @@ 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-21) + + +### 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)) +* consolidate child metadata at end of file ([#124](https://github.com/open-meteo/python-omfiles/issues/124)) ([c4954c6](https://github.com/open-meteo/python-omfiles/commit/c4954c6dea65242d50ab0ece8a37ccd08ffd1a64)) +* do not overwrite python builtin min max in example ([#136](https://github.com/open-meteo/python-omfiles/issues/136)) ([d90fd94](https://github.com/open-meteo/python-omfiles/commit/d90fd9457d4c75c15926240c1c1aae1d0974d42b)) +* hopefully fix windows test failure because of inaccessible files in psutil ([3491c10](https://github.com/open-meteo/python-omfiles/commit/3491c105c471d9359f6a850e6a81e3b70bb12691)) +* improve type stubs ([#137](https://github.com/open-meteo/python-omfiles/issues/137)) ([948d932](https://github.com/open-meteo/python-omfiles/commit/948d9328c16854ffee3715030c30962833a2f0ac)) +* improve upstream build script ([#114](https://github.com/open-meteo/python-omfiles/issues/114)) ([43e8496](https://github.com/open-meteo/python-omfiles/commit/43e8496bdf1d07933819ce276b2ea89e4bf306b6)) +* missing entry in release please config extra files ([4c43008](https://github.com/open-meteo/python-omfiles/commit/4c430083a0a296e1fe487e73edf7799ac2813184)) +* use scalar coordinates variable for array dimensions in xarray ([#135](https://github.com/open-meteo/python-omfiles/issues/135)) ([967270e](https://github.com/open-meteo/python-omfiles/commit/967270e3d876216f8c9e76375903b11174ae15f4)) + ## [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 433f686..88146e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1084,7 +1084,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 1a2a6e1..4ce1455 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/plot_map.py b/examples/plot_map.py index 3c2ac28..99036a3 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.1.0", # x-release-please-version +# "omfiles[fsspec,grids]>=1.2.0", # x-release-please-version # "matplotlib", # "cartopy", # ] 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 93c2329..b3a1f99 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", # ]