Skip to content

Commit 865090c

Browse files
committed
Release v1.1.0
1 parent 1bf9b01 commit 865090c

File tree

5 files changed

+21
-14
lines changed

5 files changed

+21
-14
lines changed

CHANGELOG.md

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

99
### Added
1010

11-
- Added `orbit_cycle` field ([#6](https://github.com/stac-extensions/sat/issues/6))
12-
- Added sat:orbit_state_vectors field ([#8](https://github.com/stac-extensions/sat/issues/8))
13-
1411
### Changed
1512

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

2017
### Fixed
2118

19+
## [v1.1.0] - 2024-12-19
20+
21+
### Added
22+
23+
- Added `orbit_cycle` field ([#6](https://github.com/stac-extensions/sat/issues/6))
24+
- Added sat:orbit_state_vectors field ([#8](https://github.com/stac-extensions/sat/issues/8))
25+
26+
### Fixed
27+
2228
- JSON Schema checks `stac_extensions` field in Collections
2329

2430
## [v1.0.0] - 2021-03-04
@@ -30,5 +36,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3036
- `sat:absolute_orbit`
3137
- `sat:anx_datetime`
3238

33-
[Unreleased]: <https://github.com/stac-extensions/sat/compare/v1.0.0...HEAD>
39+
[Unreleased]: <https://github.com/stac-extensions/sat/compare/v1.1.0...HEAD>
40+
[v1.1.0]: <https://github.com/stac-extensions/sat/compare/v1.0.0...v1.1.0>
3441
[v1.0.0]: <https://github.com/stac-extensions/sat/tree/v1.0.0>

examples/example-landsat8.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"stac_version": "1.0.0",
2+
"stac_version": "1.1.0",
33
"stac_extensions": [
4-
"https://stac-extensions.github.io/sat/v1.0.0/schema.json",
4+
"https://stac-extensions.github.io/sat/v1.1.0/schema.json",
55
"https://stac-extensions.github.io/view/v1.0.0/schema.json"
66
],
77
"id": "LC08_L1TP_107018_20181001",

examples/example-sentinel1.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"stac_version": "1.0.0",
2+
"stac_version": "1.1.0",
33
"stac_extensions": [
4-
"https://stac-extensions.github.io/sar/v1.0.0/schema.json",
5-
"https://stac-extensions.github.io/sat/v1.0.0/schema.json"
4+
"https://stac-extensions.github.io/sar/v1.1.0/schema.json",
5+
"https://stac-extensions.github.io/sat/v1.1.0/schema.json"
66
],
77
"id": "S1A_IW_SLC__1SDV_20150305T051937_20150305T052005_004892_006196_ABBB",
88
"type": "Feature",

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/sat/v1.0.0/schema.json",
3+
"$id": "https://stac-extensions.github.io/sat/v1.1.0/schema.json",
44
"title": "Satellite Extension",
55
"description": "STAC Sat 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/sat/v1.0.0/schema.json"
14+
"const": "https://stac-extensions.github.io/sat/v1.1.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-extension-sat",
3-
"version": "1.0.0",
3+
"version": "1.1.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/sat/v1.0.0/schema.json=./json-schema/schema.json",
8-
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/sat/v1.0.0/schema.json=./json-schema/schema.json"
7+
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/sat/v1.1.0/schema.json=./json-schema/schema.json",
8+
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/sat/v1.1.0/schema.json=./json-schema/schema.json"
99
},
1010
"dependencies": {
1111
"remark-cli": "^12.0.0",

0 commit comments

Comments
 (0)