Skip to content

Commit

Permalink
1.0.0-alpha.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Feb 13, 2020
1 parent c9421b4 commit 6608cf5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[![Build Status](https://travis-ci.org/Open-EO/openeo-js-processgraphs.svg?branch=master)](https://travis-ci.org/Open-EO/openeo-js-processgraphs)

This library's version is **0.1.0** and supports **openEO API version 0.4.x**.
This library's version is **1.0.0-alpha.1** and supports **openEO API version 1.0.0-rc.1**.

This repository was split up from [openeo-js-commons](https://github.com/Open-EO/openeo-js-commons). Old releases can be found there.

Expand All @@ -24,7 +24,7 @@ In a web environment you can include the library as follows:

```html
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/ajv.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@openeo/js-processgraphs@0.1/dist/main.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@openeo/js-processgraphs@1.0.0-alpha.1/dist/main.min.js"></script>
```

More information can be found in the [**documentation**](https://open-eo.github.io/openeo-js-processgraphs/0.1.0/).
More information can be found in the [**documentation**](https://open-eo.github.io/openeo-js-processgraphs/1.0.0-alpha.1/).
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openeo/js-processgraphs",
"version": "1.0.0-beta.1",
"version": "1.0.0-alpha.1",
"author": "openEO Consortium",
"contributors": [
{
Expand All @@ -23,7 +23,7 @@
"src/*"
],
"dependencies": {
"@openeo/js-commons": "^1.0.0-rc.1",
"@openeo/js-commons": "^1.0.0-rc.2",
"ajv": "^6.10.0"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions src/processgraph.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,11 +258,11 @@ module.exports = class ProcessGraph {
}
}

hasParameterDefault(name) {
hasParameterDefault(/*name*/) {
return false; // Not implemented yet
}

getParameterDefault(name) {
getParameterDefault(/*name*/) {
return null; // Not implemented yet
}

Expand Down

0 comments on commit 6608cf5

Please sign in to comment.