Skip to content

Commit

Permalink
v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed May 9, 2024
1 parent 538f8e6 commit e881fbc
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 14 deletions.
17 changes: 11 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- `processing:version` field to describe the primary software version of workflow version that produced the data
- `processing:datetime` field to describe when the processing happened
- `processing-execution` relation type to link to the processing execution that produced the data.
- `processing-software` relation type to link to the processing execution that produced the data.

### Changed

### Deprecated
Expand All @@ -21,6 +16,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

## [v1.2.0] - 2024-05-09

### Added

- `processing:version` field to describe the primary software version of workflow version that produced the data
- `processing:datetime` field to describe when the processing happened
- `processing-execution` relation type to link to the processing execution that produced the data.
- `processing-software` relation type to link to the processing execution that produced the data.

## [v1.1.0] - 2022-01-07

### Added
Expand All @@ -44,6 +48,7 @@ Initial independent release, see [previous history](https://github.com/radiantea

- `processing:lineage` now allows CommonMark for rich-text representation ([#950](https://github.com/radiantearth/stac-spec/issues/950))

[Unreleased]: <https://github.com/stac-extensions/processing/compare/v1.1.0...HEAD>
[Unreleased]: <https://github.com/stac-extensions/processing/compare/v1.2.0...HEAD>
[v1.2.0]: <https://github.com/stac-extensions/processing/compare/v1.2.0...v1.1.0>
[v1.1.0]: <https://github.com/stac-extensions/processing/compare/v1.1.0...v1.0.0>
[v1.0.0]: <https://github.com/stac-extensions/processing/tree/v1.0.0>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Processing Extension Specification

- **Title:** Processing
- **Identifier:** <https://stac-extensions.github.io/processing/v1.1.0/schema.json>
- **Identifier:** <https://stac-extensions.github.io/processing/v1.2.0/schema.json>
- **Field Name Prefix:** processing
- **Scope:** Item, Collection
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Candidate
Expand Down
2 changes: 1 addition & 1 deletion examples/collection.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/processing/v1.1.0/schema.json"
"https://stac-extensions.github.io/processing/v1.2.0/schema.json"
],
"type": "Collection",
"id": "Sentinel2-L2A",
Expand Down
2 changes: 1 addition & 1 deletion examples/item.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"stac_extensions": [
"https://stac-extensions.github.io/sat/v1.0.0/schema.json",
"https://stac-extensions.github.io/sar/v1.0.0/schema.json",
"https://stac-extensions.github.io/processing/v1.1.0/schema.json"
"https://stac-extensions.github.io/processing/v1.2.0/schema.json"
],
"id": "S1A_IW_GRDH_1SDV_20160822T182823_20160822T182848_012717_013FFE_90AF",
"properties": {
Expand Down
4 changes: 2 additions & 2 deletions json-schema/schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://stac-extensions.github.io/processing/v1.1.0/schema.json#",
"$id": "https://stac-extensions.github.io/processing/v1.2.0/schema.json#",
"title": "Processing Extension",
"description": "STAC Processing Extension for STAC Items and STAC Collections.",
"type": "object",
Expand All @@ -11,7 +11,7 @@
"stac_extensions": {
"type": "array",
"contains": {
"const": "https://stac-extensions.github.io/processing/v1.1.0/schema.json"
"const": "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
}
}
},
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "stac-extensions",
"version": "1.1.0",
"version": "1.2.0",
"scripts": {
"test": "npm run check-markdown && npm run check-examples",
"check-markdown": "remark . -f -r .github/remark.yaml",
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/processing/v1.1.0/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/processing/v1.1.0/schema.json=./json-schema/schema.json"
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/processing/v1.2.0/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/processing/v1.2.0/schema.json=./json-schema/schema.json"
},
"dependencies": {
"remark-cli": "^8.0.0",
Expand Down

0 comments on commit e881fbc

Please sign in to comment.