From 7c147f0dddbc46dee64850ac3b8a3e95ee8ab689 Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Thu, 7 Apr 2022 16:34:52 +0200 Subject: [PATCH] v2.5.0 --- CHANGELOG.md | 6 +++++- README.md | 2 +- package.json | 2 +- src/openeo.js | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d3e3b91b..eb3c99ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [2.5.0] - 2022-04-07 + ### Changed - `listJobs`, `listServices` and `listUserProcesses` allow to update existing processes. @@ -182,7 +185,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.4.1...HEAD +[Unreleased]: https://github.com/Open-EO/openeo-js-client/compare/v2.5.0...HEAD +[2.5.0]: https://github.com/Open-EO/openeo-js-client/compare/v2.4.1...v2.5.0 [2.4.1]: https://github.com/Open-EO/openeo-js-client/compare/v2.4.0...v2.4.1 [2.4.0]: https://github.com/Open-EO/openeo-js-client/compare/v2.3.1...v2.4.0 [2.3.1]: https://github.com/Open-EO/openeo-js-client/compare/v2.3.0...v2.3.1 diff --git a/README.md b/README.md index fefc96c0..0a0114a5 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ JavaScript/TypeScript client for the openEO API. * [Documentation](https://open-eo.github.io/openeo-js-client/latest/). -The version of this client is **2.4.1** and supports **openEO API versions 1.x.x**. +The version of this client is **2.5.0** and supports **openEO API versions 1.x.x**. Legacy versions are available as releases. See the [CHANGELOG](CHANGELOG.md) for recent changes. diff --git a/package.json b/package.json index c36923ca..cadc3ab5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@openeo/js-client", - "version": "2.4.1", + "version": "2.5.0", "author": "openEO Consortium", "contributors": [ { diff --git a/src/openeo.js b/src/openeo.js index cd8a32fc..3f8b2eaa 100644 --- a/src/openeo.js +++ b/src/openeo.js @@ -110,7 +110,7 @@ class OpenEO { * @returns {string} Version number (according to SemVer). */ static clientVersion() { - return "2.4.1"; + return "2.5.0"; } }