Skip to content

Commit 6d2adad

Browse files
committed
Release v2.1.0
1 parent 3860cbb commit 6d2adad

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

CHANGELOG.md

+4-1
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]
88

9+
## [2.1.0] - 2021-08-18
10+
911
### Added
1012

1113
- Experimental support for process namespaces, see [API#348](https://github.com/Open-EO/openeo-api/pull/348).
@@ -127,7 +129,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
127129

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

130-
[Unreleased]: https://github.com/Open-EO/openeo-js-client/compare/v2.0.1...HEAD
132+
[Unreleased]: https://github.com/Open-EO/openeo-js-client/compare/v2.1.0...HEAD
133+
[2.1.0]: https://github.com/Open-EO/openeo-js-client/compare/v2.0.1...v2.1.0
131134
[2.0.1]: https://github.com/Open-EO/openeo-js-client/compare/v2.0.0...v2.0.1
132135
[2.0.0]: https://github.com/Open-EO/openeo-js-client/compare/v1.3.2...v2.0.0
133136
[1.3.2]: https://github.com/Open-EO/openeo-js-client/compare/v1.3.1...v1.3.2

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
JavaScript/TypeScript client for the openEO API.
44

5-
* [Documentation](https://open-eo.github.io/openeo-js-client/2.0.1/).
5+
* [Documentation](https://open-eo.github.io/openeo-js-client/2.1.0/).
66

7-
The version of this client is **2.0.1** and supports **openEO API versions 1.x.x**.
7+
The version of this client is **2.1.0** and supports **openEO API versions 1.x.x**.
88
Legacy versions are available as releases.
99
See the [CHANGELOG](CHANGELOG.md) for recent changes.
1010

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

56-
More information can be found in the [documentation](https://open-eo.github.io/openeo-js-client/2.0.1/).
56+
More information can be found in the [documentation](https://open-eo.github.io/openeo-js-client/2.1.0/).
5757

5858
## Development
5959

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openeo/js-client",
3-
"version": "2.0.1",
3+
"version": "2.1.0",
44
"author": "openEO Consortium",
55
"contributors": [
66
{

src/connection.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ class Connection {
247247
* Requests pre-defined processes by default.
248248
* Set the namespace parameter to request processes from a specific namespace.
249249
*
250-
* Note: The list of namespaces can be retrieved by calling `listProcesses` without a namespace given.
250+
* Note: The list of namespaces can be retrieved by calling `listProcesses` without a namespace given.
251251
* The namespaces are then listed in the property `namespaces`.
252252
*
253253
* @async
@@ -449,7 +449,7 @@ class Connection {
449449
* Currently supported:
450450
* - authProviderChanged(provider): Raised when the auth provider has changed.
451451
* - tokenChanged(token): Raised when the access token has changed.
452-
* - processesChanged(type, data, namespace): Raised when the process registry has changed (i.e. a process was added, updated or deleted)
452+
* - processesChanged(type, data, namespace): Raised when the process registry has changed (i.e. a process was added, updated or deleted).
453453
*
454454
* @param {string} event
455455
* @param {Function} callback

src/openeo.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class OpenEO {
106106
* @returns {string} Version number (according to SemVer).
107107
*/
108108
static clientVersion() {
109-
return "2.0.1";
109+
return "2.1.0";
110110
}
111111

112112
}

0 commit comments

Comments
 (0)