Skip to content

Commit e881fbc

Browse files
committed
v1.2.0
1 parent 538f8e6 commit e881fbc

File tree

6 files changed

+19
-14
lines changed

6 files changed

+19
-14
lines changed

CHANGELOG.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
### Added
1010

11-
- `processing:version` field to describe the primary software version of workflow version that produced the data
12-
- `processing:datetime` field to describe when the processing happened
13-
- `processing-execution` relation type to link to the processing execution that produced the data.
14-
- `processing-software` relation type to link to the processing execution that produced the data.
15-
1611
### Changed
1712

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

2217
### Fixed
2318

19+
## [v1.2.0] - 2024-05-09
20+
21+
### Added
22+
23+
- `processing:version` field to describe the primary software version of workflow version that produced the data
24+
- `processing:datetime` field to describe when the processing happened
25+
- `processing-execution` relation type to link to the processing execution that produced the data.
26+
- `processing-software` relation type to link to the processing execution that produced the data.
27+
2428
## [v1.1.0] - 2022-01-07
2529

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

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

47-
[Unreleased]: <https://github.com/stac-extensions/processing/compare/v1.1.0...HEAD>
51+
[Unreleased]: <https://github.com/stac-extensions/processing/compare/v1.2.0...HEAD>
52+
[v1.2.0]: <https://github.com/stac-extensions/processing/compare/v1.2.0...v1.1.0>
4853
[v1.1.0]: <https://github.com/stac-extensions/processing/compare/v1.1.0...v1.0.0>
4954
[v1.0.0]: <https://github.com/stac-extensions/processing/tree/v1.0.0>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Processing Extension Specification
22

33
- **Title:** Processing
4-
- **Identifier:** <https://stac-extensions.github.io/processing/v1.1.0/schema.json>
4+
- **Identifier:** <https://stac-extensions.github.io/processing/v1.2.0/schema.json>
55
- **Field Name Prefix:** processing
66
- **Scope:** Item, Collection
77
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Candidate

examples/collection.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"stac_version": "1.0.0",
33
"stac_extensions": [
4-
"https://stac-extensions.github.io/processing/v1.1.0/schema.json"
4+
"https://stac-extensions.github.io/processing/v1.2.0/schema.json"
55
],
66
"type": "Collection",
77
"id": "Sentinel2-L2A",

examples/item.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"stac_extensions": [
44
"https://stac-extensions.github.io/sat/v1.0.0/schema.json",
55
"https://stac-extensions.github.io/sar/v1.0.0/schema.json",
6-
"https://stac-extensions.github.io/processing/v1.1.0/schema.json"
6+
"https://stac-extensions.github.io/processing/v1.2.0/schema.json"
77
],
88
"id": "S1A_IW_GRDH_1SDV_20160822T182823_20160822T182848_012717_013FFE_90AF",
99
"properties": {

json-schema/schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://stac-extensions.github.io/processing/v1.1.0/schema.json#",
3+
"$id": "https://stac-extensions.github.io/processing/v1.2.0/schema.json#",
44
"title": "Processing Extension",
55
"description": "STAC Processing Extension for STAC Items and STAC Collections.",
66
"type": "object",
@@ -11,7 +11,7 @@
1111
"stac_extensions": {
1212
"type": "array",
1313
"contains": {
14-
"const": "https://stac-extensions.github.io/processing/v1.1.0/schema.json"
14+
"const": "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
1515
}
1616
}
1717
},

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "stac-extensions",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"scripts": {
55
"test": "npm run check-markdown && npm run check-examples",
66
"check-markdown": "remark . -f -r .github/remark.yaml",
7-
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/processing/v1.1.0/schema.json=./json-schema/schema.json",
8-
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/processing/v1.1.0/schema.json=./json-schema/schema.json"
7+
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/processing/v1.2.0/schema.json=./json-schema/schema.json",
8+
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/processing/v1.2.0/schema.json=./json-schema/schema.json"
99
},
1010
"dependencies": {
1111
"remark-cli": "^8.0.0",

0 commit comments

Comments
 (0)