From 865090cda7d5fdc933bcdb2cc4debfd19a86e7ea Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Wed, 18 Dec 2024 01:47:58 +0100 Subject: [PATCH] Release v1.1.0 --- CHANGELOG.md | 15 +++++++++++---- examples/example-landsat8.json | 4 ++-- examples/example-sentinel1.json | 6 +++--- json-schema/schema.json | 4 ++-- package.json | 6 +++--- 5 files changed, 21 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a550f0..78b87d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,9 +8,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- Added `orbit_cycle` field ([#6](https://github.com/stac-extensions/sat/issues/6)) -- Added sat:orbit_state_vectors field ([#8](https://github.com/stac-extensions/sat/issues/8)) - ### Changed ### Deprecated @@ -19,6 +16,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +## [v1.1.0] - 2024-12-19 + +### Added + +- Added `orbit_cycle` field ([#6](https://github.com/stac-extensions/sat/issues/6)) +- Added sat:orbit_state_vectors field ([#8](https://github.com/stac-extensions/sat/issues/8)) + +### Fixed + - JSON Schema checks `stac_extensions` field in Collections ## [v1.0.0] - 2021-03-04 @@ -30,5 +36,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `sat:absolute_orbit` - `sat:anx_datetime` -[Unreleased]: +[Unreleased]: +[v1.1.0]: [v1.0.0]: diff --git a/examples/example-landsat8.json b/examples/example-landsat8.json index 4e9a01c..0f43a0e 100644 --- a/examples/example-landsat8.json +++ b/examples/example-landsat8.json @@ -1,7 +1,7 @@ { - "stac_version": "1.0.0", + "stac_version": "1.1.0", "stac_extensions": [ - "https://stac-extensions.github.io/sat/v1.0.0/schema.json", + "https://stac-extensions.github.io/sat/v1.1.0/schema.json", "https://stac-extensions.github.io/view/v1.0.0/schema.json" ], "id": "LC08_L1TP_107018_20181001", diff --git a/examples/example-sentinel1.json b/examples/example-sentinel1.json index 38b2bc2..a0a7cd2 100644 --- a/examples/example-sentinel1.json +++ b/examples/example-sentinel1.json @@ -1,8 +1,8 @@ { - "stac_version": "1.0.0", + "stac_version": "1.1.0", "stac_extensions": [ - "https://stac-extensions.github.io/sar/v1.0.0/schema.json", - "https://stac-extensions.github.io/sat/v1.0.0/schema.json" + "https://stac-extensions.github.io/sar/v1.1.0/schema.json", + "https://stac-extensions.github.io/sat/v1.1.0/schema.json" ], "id": "S1A_IW_SLC__1SDV_20150305T051937_20150305T052005_004892_006196_ABBB", "type": "Feature", diff --git a/json-schema/schema.json b/json-schema/schema.json index de172fd..0d86067 100644 --- a/json-schema/schema.json +++ b/json-schema/schema.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://stac-extensions.github.io/sat/v1.0.0/schema.json", + "$id": "https://stac-extensions.github.io/sat/v1.1.0/schema.json", "title": "Satellite Extension", "description": "STAC Sat Extension to a STAC Item.", "type": "object", @@ -11,7 +11,7 @@ "stac_extensions": { "type": "array", "contains": { - "const": "https://stac-extensions.github.io/sat/v1.0.0/schema.json" + "const": "https://stac-extensions.github.io/sat/v1.1.0/schema.json" } } }, diff --git a/package.json b/package.json index 109f9a4..80b64f7 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { "name": "stac-extension-sat", - "version": "1.0.0", + "version": "1.1.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/sat/v1.0.0/schema.json=./json-schema/schema.json", - "format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/sat/v1.0.0/schema.json=./json-schema/schema.json" + "check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/sat/v1.1.0/schema.json=./json-schema/schema.json", + "format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/sat/v1.1.0/schema.json=./json-schema/schema.json" }, "dependencies": { "remark-cli": "^12.0.0",