Skip to content

Commit

Permalink
Update version numbers, 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Dec 2, 2020
1 parent d590706 commit 09e71b4
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 15 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.2] - 2020-12-02

### Changed
- Make client more flexible to allow setting the client to use OIDC Authentication Code Flow with PKCE instead of Implicit Flow in the future

### Fixed
- Client doesn't throw errors on back-ends with version numbers >= 1.0.1

## [1.0.1] - 2020-11-19

### Fixed
Expand All @@ -21,5 +29,6 @@ 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.0...HEAD
[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
[1.0.0]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.0-rc.5...v1.0.0
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.1/).
* [Documentation](https://open-eo.github.io/openeo-js-client/1.0.2/).

The version of this client is **1.0.1** and supports **openEO API versions 1.0.x**.
The version of this client is **1.0.2** 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.1/).
More information can be found in the [documentation](https://open-eo.github.io/openeo-js-client/1.0.2/).

## 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.1"
"@openeo/js-client": "^1.0.2"
},
"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.1",
"@openeo/js-client": "^1.0.2",
"typescript": "^4.0.5"
},
"scripts": {
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openeo/js-client",
"version": "1.0.1",
"version": "1.0.2",
"author": "openEO Consortium",
"contributors": [
{
Expand Down Expand Up @@ -32,16 +32,16 @@
"src/*"
],
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@types/node": "^14.14.7",
"babel-loader": "^8.2.1",
"eslint": "^7.13.0",
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@types/node": "^14.14.10",
"babel-loader": "^8.2.2",
"eslint": "^7.14.0",
"eslint-plugin-jsdoc": "^30.7.8",
"jest": "^24.9.0",
"jest-html-reporter": "^3.3.0",
"jsdoc": "^3.6.6",
"typescript": "^4.0.5",
"typescript": "^4.1.2",
"unminified-webpack-plugin": "^2.0.0",
"wait-for-expect": "^1.3.0",
"webpack": "^4.44.2",
Expand All @@ -51,7 +51,7 @@
"dependencies": {
"@openeo/js-commons": "^1.2.0",
"axios": "^0.19.0",
"oidc-client": "^1.10.0"
"oidc-client": "^1.10.1"
},
"scripts": {
"docs": "jsdoc -r -d docs/ -P package.json -R README.md -c .jsdoc",
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.1";
return "1.0.2";
}

}
Expand Down
2 changes: 1 addition & 1 deletion tests/earthengine.test.js

Large diffs are not rendered by default.

0 comments on commit 09e71b4

Please sign in to comment.