Skip to content

Commit 7133d0c

Browse files
Update SAR extension version to v1.1.0
1 parent 6086089 commit 7133d0c

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [v1.0.0] - 2024-09-08
88

99
### Added
1010

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# SAR Extension Specification
22

33
- **Title:** SAR
4-
- **Identifier:** <https://stac-extensions.github.io/sar/v1.0.0/schema.json>
4+
- **Identifier:** <https://stac-extensions.github.io/sar/v1.1.0/schema.json>
55
- **Field Name Prefix:** sar
66
- **Scope:** Item, Collection
7-
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/blob/master/extensions/README.md#extension-maturity):** Candidate
7+
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/blob/master/extensions/README.md#extension-maturity):** Stable
88
- **Owner**: @m-mohr, @emmanuelmathot
99
- **History**: [Prior to March 2, 2021](https://github.com/radiantearth/stac-spec/commits/v1.0.0-rc.1/extensions/sar)
1010

examples/envisat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"type": "Feature",
33
"stac_version": "1.0.0",
44
"stac_extensions": [
5-
"https://stac-extensions.github.io/sar/v1.0.0/schema.json",
5+
"https://stac-extensions.github.io/sar/v1.1.0/schema.json",
66
"https://stac-extensions.github.io/product/v0.1.0/schema.json"
77
],
88
"id": "sar-envisat-example",

examples/sentinel-1-grd-ew.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"type": "Feature",
33
"stac_version": "1.0.0",
44
"stac_extensions": [
5-
"https://stac-extensions.github.io/sar/v1.0.0/schema.json",
5+
"https://stac-extensions.github.io/sar/v1.1.0/schema.json",
66
"https://stac-extensions.github.io/product/v0.1.0/schema.json"
77
],
88
"id": "sentinel-1-example",

examples/sentinel-1-grd-s4.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"type": "Feature",
33
"stac_version": "1.0.0",
44
"stac_extensions": [
5-
"https://stac-extensions.github.io/sar/v1.0.0/schema.json",
5+
"https://stac-extensions.github.io/sar/v1.1.0/schema.json",
66
"https://stac-extensions.github.io/sat/v1.0.0/schema.json",
77
"https://stac-extensions.github.io/processing/v1.2.0/schema.json",
88
"https://stac-extensions.github.io/product/v0.1.0/schema.json"

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/sar/v1.0.0/schema.json",
3+
"$id": "https://stac-extensions.github.io/sar/v1.1.0/schema.json",
44
"title": "SAR Extension",
55
"description": "STAC SAR Extension to a STAC Item",
66
"type": "object",
@@ -11,7 +11,7 @@
1111
"stac_extensions": {
1212
"type": "array",
1313
"contains": {
14-
"const": "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
14+
"const": "https://stac-extensions.github.io/sar/v1.1.0/schema.json"
1515
}
1616
}
1717
},

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
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/sar/v1.0.0/schema.json=./json-schema/schema.json",
8-
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/sar/v1.0.0/schema.json=./json-schema/schema.json"
7+
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/sar/v1.1.0/schema.json=./json-schema/schema.json",
8+
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/sar/v1.1.0/schema.json=./json-schema/schema.json"
99
},
1010
"dependencies": {
1111
"remark-cli": "^8.0.0",

0 commit comments

Comments
 (0)