Skip to content

Commit

Permalink
Release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Jun 25, 2021
1 parent cb74bae commit 08f4c73
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
18 changes: 11 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand All @@ -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.
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion openeo/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.7.1a2'
__version__ = '0.8.0'
2 changes: 1 addition & 1 deletion openeo/rest/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 08f4c73

Please sign in to comment.