Skip to content

Commit a98c588

Browse files
committed
Update version number to v1.2.0
1 parent 34ae614 commit a98c588

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
lines changed

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.2.0] - 2021-05-31
10+
911
### Added
1012

1113
- **New extensions:**
@@ -428,6 +430,7 @@ Initial version.
428430

429431

430432
[Unreleased]: <https://github.com/Open-EO/openeo-api/compare/master...dev>
433+
[1.2.0]: <https://github.com/Open-EO/openeo-api/compare/1.1.0...1.2.0>
431434
[1.1.0]: <https://github.com/Open-EO/openeo-api/compare/1.0.1...1.1.0>
432435
[1.0.1]: <https://github.com/Open-EO/openeo-api/compare/1.0.0...1.0.1>
433436
[1.0.0]: <https://github.com/Open-EO/openeo-api/compare/0.4.2...1.0.0>

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.1.0** 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.2.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.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). |
14+
| [**1.2.0**](https://api.openeo.org) | **current** | Clarifications, new extensions, vector data cubes, STAC (API) updates, more link relation types, improved batch job results and logs. [Changelog](CHANGELOG.md#120---2023-05-31). |
15+
| [1.1.0](https://api.openeo.org/1.1.0) | legacy | 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). |
1516
| [1.0.1](https://api.openeo.org/1.0.1) | legacy | Clarifications, bugfixes and CORS improvements. [Changelog](CHANGELOG.md#101---2020-12-07). |
1617
| [1.0.0](https://api.openeo.org/1.0.0) | legacy | First stable version of openEO. [Changelog](CHANGELOG.md#100---2020-07-17). |
1718
| [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). |

extensions/federation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ schema:
8282
8383
```json
8484
{
85-
"api_version": "1.1.0",
85+
"api_version": "1.2.0",
8686
"federation": {
8787
"vito": {
8888
"title": "VITO",

openapi.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
openapi: 3.0.2
22
info:
33
title: openEO API
4-
version: 1.1.0
4+
version: 1.2.0
55
description: |-
66
The openEO API specification for interoperable cloud-based processing of large Earth observation datasets.
77
8-
**Conformance class:** `https://api.openeo.org/1.1.0`
8+
**Conformance class:** `https://api.openeo.org/1.2.0`
99
1010
# API Principles
1111
@@ -618,7 +618,7 @@ paths:
618618
Version number of the openEO specification this back-end
619619
implements.
620620
enum:
621-
- 1.1.0
621+
- 1.2.0
622622
backend_version:
623623
type: string
624624
description: >-
@@ -1193,7 +1193,7 @@ paths:
11931193
Otherwise, the implemented functionality can usually be retrieved from
11941194
the [capabilties](#tag/Capabilities/operation/capabilities) in openEO.
11951195
1196-
The general openEO conformance class is `https://api.openeo.org/1.1.0`.
1196+
The general openEO conformance class is `https://api.openeo.org/1.2.0`.
11971197
See the individual openEO API extensions for their conformance classes.
11981198
11991199
The conformance classes listed at this endpoint and listed in the
@@ -3727,7 +3727,7 @@ components:
37273727
implementation conforms to. Conformance classes are commonly used in
37283728
all OGC APIs and the STAC API specification.
37293729
3730-
The general openEO conformance class is `https://api.openeo.org/1.1.0`.
3730+
The general openEO conformance class is `https://api.openeo.org/1.2.0`.
37313731
See the individual openEO API extensions for their conformance classes.
37323732
37333733
This property is REQUIRED for STAC API versions 1.0.0-beta.1 and later.
@@ -3736,7 +3736,7 @@ components:
37363736
type: string
37373737
format: uri
37383738
example:
3739-
- https://api.openeo.org/1.1.0
3739+
- https://api.openeo.org/1.2.0
37403740
- https://api.openeo.org/extensions/commercial-data/0.1.0
37413741
- https://api.openeo.org/extensions/federation/0.1.0
37423742
- https://api.stacspec.org/v1.0.0/collections

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.1.0",
3+
"version": "1.2.0",
44
"author": "openEO Consortium",
55
"license": "Apache-2.0",
66
"description": "The openEO API specification.",

0 commit comments

Comments
 (0)