Skip to content

Commit 2f793b4

Browse files
committed
Update version numbers
1 parent 93b194f commit 2f793b4

8 files changed

+13
-10
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [v1.2.0] - 2025-03-29
11+
1012
### Added
1113

1214
- Added `LH`, `LV`, `RH`, `RV`, `CH` and `CV` enumerations to `sar:polarizations` to support compact polarization.
@@ -51,6 +53,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5153

5254
- Best practices and asset roles
5355

54-
[Unreleased]: <https://github.com/stac-extensions/sar/compare/v1.1.0...main>
56+
[Unreleased]: <https://github.com/stac-extensions/sar/compare/v1.2.0...main>
57+
[v1.2.0]: <https://github.com/stac-extensions/sar/compare/v1.1.0...v1.2.0>
5558
[v1.1.0]: <https://github.com/stac-extensions/sar/compare/v1.0.0...v1.1.0>
5659
[v1.0.0]: <https://github.com/stac-extensions/sar/tree/v1.0.0>

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SAR Extension Specification
22

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

examples/envisat.json

+1-1
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.1.0/schema.json",
5+
"https://stac-extensions.github.io/sar/v1.2.0/schema.json",
66
"https://stac-extensions.github.io/altimetry/v0.1.0/schema.json",
77
"https://stac-extensions.github.io/product/v0.1.0/schema.json"
88
],

examples/sentinel-1-grd-ew.json

+1-1
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.1.0/schema.json",
5+
"https://stac-extensions.github.io/sar/v1.2.0/schema.json",
66
"https://stac-extensions.github.io/altimetry/v0.1.0/schema.json",
77
"https://stac-extensions.github.io/product/v0.1.0/schema.json"
88
],

examples/sentinel-1-grd-s4.json

+1-1
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.1.0/schema.json",
5+
"https://stac-extensions.github.io/sar/v1.2.0/schema.json",
66
"https://stac-extensions.github.io/altimetry/v0.1.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",

examples/sentinel-1-slc-iw.json

+1-1
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.1.0/schema.json",
5+
"https://stac-extensions.github.io/sar/v1.2.0/schema.json",
66
"https://stac-extensions.github.io/alternate-assets/v1.1.0/schema.json",
77
"https://stac-extensions.github.io/altimetry/v0.1.0/schema.json",
88
"https://stac-extensions.github.io/storage/v1.0.0/schema.json"

json-schema/schema.json

+2-2
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.1.0/schema.json",
3+
"$id": "https://stac-extensions.github.io/sar/v1.2.0/schema.json",
44
"title": "SAR Extension",
55
"description": "STAC SAR 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/sar/v1.1.0/schema.json"
14+
"const": "https://stac-extensions.github.io/sar/v1.2.0/schema.json"
1515
}
1616
}
1717
},

package.json

+2-2
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.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"
7+
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/sar/v1.2.0/schema.json=./json-schema/schema.json",
8+
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/sar/v1.2.0/schema.json=./json-schema/schema.json"
99
},
1010
"dependencies": {
1111
"remark-cli": "^12.0.0",

0 commit comments

Comments
 (0)