diff --git a/CHANGELOG.md b/CHANGELOG.md index 53141366..4e3a020d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.2.0] - 2021-08-20 + ### Added - New method `getUrl` to class `Connection` to get the main URL of the back-end, which the user provided (i.e. doesn't usually contain version part) @@ -133,7 +135,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/Open-EO/openeo-js-client/compare/v2.1.0...HEAD +[Unreleased]: https://github.com/Open-EO/openeo-js-client/compare/v2.2.0...HEAD +[2.2.0]: https://github.com/Open-EO/openeo-js-client/compare/v2.1.0...v2.2.0 [2.1.0]: https://github.com/Open-EO/openeo-js-client/compare/v2.0.1...v2.1.0 [2.0.1]: https://github.com/Open-EO/openeo-js-client/compare/v2.0.0...v2.0.1 [2.0.0]: https://github.com/Open-EO/openeo-js-client/compare/v1.3.2...v2.0.0 diff --git a/README.md b/README.md index 050950ab..93517881 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ JavaScript/TypeScript client for the openEO API. -* [Documentation](https://open-eo.github.io/openeo-js-client/2.1.0/). +* [Documentation](https://open-eo.github.io/openeo-js-client/2.2.0/). -The version of this client is **2.1.0** and supports **openEO API versions 1.x.x**. +The version of this client is **2.2.0** and supports **openEO API versions 1.x.x**. Legacy versions are available as releases. See the [CHANGELOG](CHANGELOG.md) for recent changes. @@ -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/2.1.0/). +More information can be found in the [documentation](https://open-eo.github.io/openeo-js-client/2.2.0/). ## Development diff --git a/package.json b/package.json index 78768dda..20395c63 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@openeo/js-client", - "version": "2.1.0", + "version": "2.2.0", "author": "openEO Consortium", "contributors": [ { diff --git a/src/openeo.js b/src/openeo.js index 9d23af38..ba127ff6 100644 --- a/src/openeo.js +++ b/src/openeo.js @@ -109,7 +109,7 @@ class OpenEO { * @returns {string} Version number (according to SemVer). */ static clientVersion() { - return "2.1.0"; + return "2.2.0"; } }