diff --git a/CHANGELOG.md b/CHANGELOG.md index 76c2b3239..8224b8d62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,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). - ## [Unreleased] ### Added +### Changed + +### Removed + +### Fixed + + +## [0.8.0] - 2021-06-25 + +### Added + - Allow, but raise warning when specifying a CRS for the geometry passed to `aggregate_spatial` and `mask_polygon`, which is non-standard/experimental feature, only supported by specific back-ends ([#204](https://github.com/Open-EO/openeo-python-client/issues/204)) @@ -21,7 +31,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added a method `service` to `Connection` - Add `Rfc3339.parse_date` and `Rfc3339.parse_date_or_datetime` - ### Changed - Disallow redirects on POST/DELETE/... requests and require status code 200 on `POST /result` requests. @@ -33,11 +42,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - The method `remove_service` in `Connection` has been deprecated in favor of `delete_service` in the `Service` class -### Removed - -### Fixed - - ## [0.7.0] - 2021-04-21 diff --git a/openeo/_version.py b/openeo/_version.py index 73660ce55..32a90a3b9 100644 --- a/openeo/_version.py +++ b/openeo/_version.py @@ -1 +1 @@ -__version__ = '0.7.1a2' +__version__ = '0.8.0' diff --git a/openeo/rest/connection.py b/openeo/rest/connection.py index 6fcc15ba3..edf9331fd 100644 --- a/openeo/rest/connection.py +++ b/openeo/rest/connection.py @@ -804,7 +804,7 @@ def create_service(self, graph: dict, type: str, **kwargs) -> Service: service_id = response.headers.get("OpenEO-Identifier") return Service(service_id, self) - @deprecated("Use :py:meth:`openeo.rest.service.Service.delete_service` instead.", version="0.7.1") + @deprecated("Use :py:meth:`openeo.rest.service.Service.delete_service` instead.", version="0.8.0") def remove_service(self, service_id: str): """ Stop and remove a secondary web service.