Skip to content

Commit

Permalink
Release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Feb 18, 2021
1 parent 3df4b9c commit 5a2ae3c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.0] - 2021-02-18

### Added

- Added new method `getResultsAsStac` for Jobs, which includes support for STAC Collections returned by the API for batch job results.
Expand Down Expand Up @@ -48,7 +50,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

All prior releases have been documented in the [GitHub Releases](https://github.com/Open-EO/openeo-js-client/releases).

[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.3...HEAD
[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.1.0...HEAD
[1.1.0]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.3...v1.1.0
[1.0.3]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.2...v1.0.3
[1.0.2]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.1...v1.0.2
[1.0.1]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.0...v1.0.1
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

JavaScript/TypeScript client for the openEO API.

* [Documentation](https://open-eo.github.io/openeo-js-client/1.0.3/).
* [Documentation](https://open-eo.github.io/openeo-js-client/1.1.0/).

The version of this client is **1.0.3** and supports **openEO API versions 1.x.x**.
The version of this client is **1.1.0** and supports **openEO API versions 1.x.x**.
Legacy versions are available as releases.
See the [CHANGELOG](CHANGELOG.md) for recent changes.

Expand Down Expand Up @@ -53,7 +53,7 @@ In Node.js:
In Typescript:
* [Basic Discovery (promises)](examples/typescript/discovery.ts)

More information can be found in the [documentation](https://open-eo.github.io/openeo-js-client/1.0.3/).
More information can be found in the [documentation](https://open-eo.github.io/openeo-js-client/1.1.0/).

## Development

Expand Down
2 changes: 1 addition & 1 deletion examples/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"main": "discovery.js",
"dependencies": {
"@openeo/js-client": "^1.0.3"
"@openeo/js-client": "^1.1.0"
},
"scripts": {
"start": "node discovery.js"
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"main": "discovery.ts",
"dependencies": {
"@openeo/js-client": "^1.0.3",
"@openeo/js-client": "^1.1.0",
"typescript": "^4.0.5"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openeo/js-client",
"version": "1.0.3",
"version": "1.1.0",
"author": "openEO Consortium",
"contributors": [
{
Expand Down
2 changes: 1 addition & 1 deletion src/openeo.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class OpenEO {
* @returns {string} Version number (according to SemVer).
*/
static clientVersion() {
return "1.0.3";
return "1.1.0";
}

}
Expand Down

0 comments on commit 5a2ae3c

Please sign in to comment.