Skip to content

Commit

Permalink
Prepare release of v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Aug 12, 2021
1 parent 9e55762 commit f120841
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Expand Up @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.3.0] - 2021-08-12

### Added

- Implemented process namespace support.

### Changed

- Improved clarity of error messages.
- `BaseProcess` class doesn't expose process properties via (non-public) `spec` property any longer.

### Deprecated

- `ProcessRegistry` has been deprecated. Use the `ProcessRegistry` from `@openeo/js-commons` (since v1.4.0) instead.

## [1.2.1] - 2021-08-02

### Fixed
Expand Down Expand Up @@ -37,7 +52,8 @@ First stable release supporting openEO API 1.0.0.

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

[Unreleased]: <https://github.com/Open-EO/openeo-js-processgraphs/compare/v1.2.1...HEAD>
[Unreleased]: <https://github.com/Open-EO/openeo-js-processgraphs/compare/v1.3.0...HEAD>
[1.3.0]: <https://github.com/Open-EO/openeo-js-processgraphs/compare/v1.2.1...v1.3.0>
[1.2.1]: <https://github.com/Open-EO/openeo-js-processgraphs/compare/v1.2.0...v1.2.1>
[1.2.0]: <https://github.com/Open-EO/openeo-js-processgraphs/compare/v1.1.0...v1.2.0>
[1.1.0]: <https://github.com/Open-EO/openeo-js-processgraphs/compare/v1.0.0...v1.1.0>
Expand Down
4 changes: 2 additions & 2 deletions README.md
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 **1.2.1** and supports **openEO API version 1.x**.
This library's version is **1.3.0** and supports **openEO API version 1.x**.

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

Expand All @@ -27,4 +27,4 @@ In a web environment you can include the library as follows:
<script src="https://cdn.jsdelivr.net/npm/@openeo/js-processgraphs@1/dist/main.min.js"></script>
```

More information can be found in the [**documentation**](https://open-eo.github.io/openeo-js-processgraphs/1.2.1/).
More information can be found in the [**documentation**](https://open-eo.github.io/openeo-js-processgraphs/1.3.0/).
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@openeo/js-processgraphs",
"version": "1.2.1",
"version": "1.3.0",
"author": "openEO Consortium",
"contributors": [
{
Expand Down
1 change: 1 addition & 0 deletions src/registry.js
Expand Up @@ -9,6 +9,7 @@ const CommonProcessRegistry = require('@openeo/js-commons/src/processRegistry');
* @todo Remove in 2.0.0.
* @augments CommonProcessRegistry
* @class
* @deprecated
*/
class ProcessRegistry extends CommonProcessRegistry {

Expand Down

0 comments on commit f120841

Please sign in to comment.