Skip to content

Commit 08f4c73

Browse files
committed
Release 0.8.0
1 parent cb74bae commit 08f4c73

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,21 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
87
## [Unreleased]
98

109
### Added
1110

11+
### Changed
12+
13+
### Removed
14+
15+
### Fixed
16+
17+
18+
## [0.8.0] - 2021-06-25
19+
20+
### Added
21+
1222
- Allow, but raise warning when specifying a CRS for the geometry passed to `aggregate_spatial` and `mask_polygon`,
1323
which is non-standard/experimental feature, only supported by specific back-ends
1424
([#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
2131
- Added a method `service` to `Connection`
2232
- Add `Rfc3339.parse_date` and `Rfc3339.parse_date_or_datetime`
2333

24-
2534
### Changed
2635

2736
- 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
3342

3443
- The method `remove_service` in `Connection` has been deprecated in favor of `delete_service` in the `Service` class
3544

36-
### Removed
37-
38-
### Fixed
39-
40-
4145

4246
## [0.7.0] - 2021-04-21
4347

openeo/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.7.1a2'
1+
__version__ = '0.8.0'

openeo/rest/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ def create_service(self, graph: dict, type: str, **kwargs) -> Service:
804804
service_id = response.headers.get("OpenEO-Identifier")
805805
return Service(service_id, self)
806806

807-
@deprecated("Use :py:meth:`openeo.rest.service.Service.delete_service` instead.", version="0.7.1")
807+
@deprecated("Use :py:meth:`openeo.rest.service.Service.delete_service` instead.", version="0.8.0")
808808
def remove_service(self, service_id: str):
809809
"""
810810
Stop and remove a secondary web service.

0 commit comments

Comments
 (0)