Skip to content

Commit 0ccbcaf

Browse files
committed
Update version number to 1.1.0
1 parent 6d4076f commit 0ccbcaf

4 files changed

Lines changed: 9 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## Unreleased / Draft
88

9+
## [1.1.0] - 2021-06-15
10+
911
### Added
1012
- `GET /processes` and `GET` / `PUT` for `/process_graphs/{process_graph_id}`: Allow specifying the return values processes receive from child processes. [#350](https://github.com/Open-EO/openeo-api/issues/350)
1113
- Recommendation that `POST /result` returns a `tar` file if the result consists of multiple files. [#349](https://github.com/Open-EO/openeo-api/issues/349)
@@ -367,6 +369,7 @@ Initial version.
367369

368370

369371
[Unreleased]: <https://github.com/Open-EO/openeo-api/compare/master...dev>
372+
[1.1.0]: <https://github.com/Open-EO/openeo-api/compare/1.0.1...1.1.0>
370373
[1.0.1]: <https://github.com/Open-EO/openeo-api/compare/1.0.0...1.0.1>
371374
[1.0.0]: <https://github.com/Open-EO/openeo-api/compare/0.4.2...1.0.0>
372375
[0.4.2]: <https://github.com/Open-EO/openeo-api/compare/0.4.1...0.4.2>

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ openEO develops an open API to connect R, Python and JavaScript clients to big E
66

77
## Versions / Branches
88

9-
The [master branch](https://github.com/Open-EO/openeo-api/tree/master) is the 'stable' version of the openEO API specification. It is currently version **1.0.1** of the specification. The [draft branch](https://github.com/Open-EO/openeo-api/tree/draft) is where active development takes place.
9+
The [master branch](https://github.com/Open-EO/openeo-api/tree/master) is the 'stable' version of the openEO API specification. It is currently version **1.1.0** of the specification. The [draft branch](https://github.com/Open-EO/openeo-api/tree/draft) is where active development takes place.
1010

1111
| Version / Branch | Status | Description |
1212
| --------------------------------------------------------- | ----------- | ----------- |
1313
| [draft](https://api.openeo.org/draft) | planned | *Unstable* - Next version. |
14-
| [**1.0.1**](https://api.openeo.org) | **current** | Clarifications, bugfixes and CORS improvements. [Changelog](CHANGELOG.md#101---2020-12-07). |
14+
| [**1.1.0**](https://api.openeo.org) | **current** | Clarifications, STAC updates, return value for child processes, more details for logs and jobs, default clients for OIDC. [Changelog](CHANGELOG.md#110---2021-06-15). |
15+
| [1.0.1](https://api.openeo.org/1.0.1) | legacy | Clarifications, bugfixes and CORS improvements. [Changelog](CHANGELOG.md#101---2020-12-07). |
1516
| [1.0.0](https://api.openeo.org/1.0.0) | legacy | First stable version of openEO. [Changelog](CHANGELOG.md#100---2020-07-17). |
1617
| [1.0.0-rc.2](https://api.openeo.org/1.0.0-rc.2) | legacy | Introduced user-defined processes. [Changelog](CHANGELOG.md#100-rc2---2020-02-20). |
1718
| [1.0.0-rc.1](https://api.openeo.org/1.0.0-rc.1) | legacy | Better UDF support, support for file import, support for processing logs, better alignment with STAC and upcoming OGC APIs. Removes WebSocket-based Subscription API. [Changelog](CHANGELOG.md#100-rc1---2020-01-31) |

openapi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.2
22
info:
33
title: openEO API
4-
version: 1.0.1
4+
version: 1.1.0
55
description: |-
66
The openEO API specification for interoperable cloud-based processing of large Earth observation datasets.
77
@@ -580,7 +580,7 @@ paths:
580580
Version number of the openEO specification this back-end
581581
implements.
582582
enum:
583-
- 1.0.1
583+
- 1.1.0
584584
backend_version:
585585
type: string
586586
description: >-

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openeo/api",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"author": "openEO Consortium",
55
"license": "Apache-2.0",
66
"description": "The openEO API specification.",

0 commit comments

Comments
 (0)