From a439f08b064096097e8312c92e86a0ed21ddfbbb Mon Sep 17 00:00:00 2001 From: Stefaan Lippens Date: Mon, 18 Mar 2024 13:57:05 +0100 Subject: [PATCH] Release 0.28.0 --- CHANGELOG.md | 14 ++++++++++++-- openeo/_version.py | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb180639c..c427cf27c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +### Changed + +### Removed + +### Fixed + + +## [0.28.0] - 2024-03-18 + +### Added + - Introduced superclass `CubeMetadata` for `CollectionMetadata` for essential metadata handling (just dimensions for now) without collection-specific STAC metadata parsing. ([#464](https://github.com/Open-EO/openeo-python-client/issues/464)) - Added `VectorCube.vector_to_raster()` ([#550](https://github.com/Open-EO/openeo-python-client/issues/550)) @@ -17,12 +28,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Changed default `chunk_size` of various `download` functions from None to 10MB. This improves the handling of large downloads and reduces memory usage. ([#528](https://github.com/Open-EO/openeo-python-client/issues/528)) - `Connection.execute()` and `DataCube.execute()` now have a `auto_decode` argument. If set to True (default) the response will be decoded as a JSON and throw an exception if this fails, if set to False the raw `requests.Response` object will be returned. ([#499](https://github.com/Open-EO/openeo-python-client/issues/499)) -### Removed - ### Fixed - Preserve geo-referenced `x` and `y` coordinates in `execute_local_udf` ([#549](https://github.com/Open-EO/openeo-python-client/issues/549)) + ## [0.27.0] - 2024-01-12 ### Added diff --git a/openeo/_version.py b/openeo/_version.py index adad58b2a..df7db8648 100644 --- a/openeo/_version.py +++ b/openeo/_version.py @@ -1 +1 @@ -__version__ = "0.28.0a1" +__version__ = "0.28.0"