Skip to content

Commit

Permalink
Release v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Aug 20, 2021
1 parent 2c27be8 commit c0acffd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 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]

## [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)
Expand Down Expand Up @@ -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
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/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.

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/2.1.0/).
More information can be found in the [documentation](https://open-eo.github.io/openeo-js-client/2.2.0/).

## Development

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": "2.1.0",
"version": "2.2.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 @@ -109,7 +109,7 @@ class OpenEO {
* @returns {string} Version number (according to SemVer).
*/
static clientVersion() {
return "2.1.0";
return "2.2.0";
}

}
Expand Down

0 comments on commit c0acffd

Please sign in to comment.