From c41df8b2706e00c2812348d5bf3210a90b9e65f8 Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Thu, 5 Jan 2023 13:18:56 +0100 Subject: [PATCH] Release v1.1.0 --- CHANGELOG.md | 15 +++++++++++---- README.md | 4 ++-- examples/catalog.json | 2 +- examples/collection.json | 2 +- examples/item.json | 2 +- json-schema/schema.json | 4 ++-- package.json | 8 ++++---- 7 files changed, 22 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1a8583..936711b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,15 +10,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -- All timestamps must be in UTC ([#1095](https://github.com/radiantearth/stac-spec/issues/1095)) -- The extension can now be used mostly everywhere (e.g. Catalog, Collections, Items, Assets, Links), which aligns with STAC common metadata. - ### Deprecated ### Removed ### Fixed +## [v1.1.0] - 2023-01-05 + +### Changed + +- All timestamps must be in UTC ([#1095](https://github.com/radiantearth/stac-spec/issues/1095)) +- The extension can now be used mostly everywhere (e.g. Catalog, Collections, Items, Assets, Links), which aligns with STAC common metadata. + +### Fixed + - Clarified scope - Clarified that no field is required, which is also not enforced in the schema - JSON Schema checks `stac_extensions` field in Collections @@ -29,5 +35,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - JSON Schema validates assets, item assets definitions and collection assets -[Unreleased]: +[Unreleased]: +[v1.1.0]: [v1.0.0]: diff --git a/README.md b/README.md index f5feaf6..b751f95 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # Timestamps Extension Specification - **Title:** Timestamps -- **Identifier:** +- **Identifier:** - **Field Name Prefix:** - -- **Scope:** Item, Collection +- **Scope:** Item, Catalog, Collection - **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Pilot - **Owner**: @m-mohr - **History**: [Prior to March 2, 2021](https://github.com/radiantearth/stac-spec/commits/v1.0.0-rc.1/extensions/timestamps) diff --git a/examples/catalog.json b/examples/catalog.json index e0f8f39..5da260f 100644 --- a/examples/catalog.json +++ b/examples/catalog.json @@ -1,7 +1,7 @@ { "stac_version": "1.0.0", "stac_extensions": [ - "https://stac-extensions.github.io/timestamps/v1.0.0/schema.json" + "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json" ], "id": "landsat-8", "type": "Catalog", diff --git a/examples/collection.json b/examples/collection.json index 03c6daf..7a630b8 100644 --- a/examples/collection.json +++ b/examples/collection.json @@ -1,7 +1,7 @@ { "stac_version": "1.0.0", "stac_extensions": [ - "https://stac-extensions.github.io/timestamps/v1.0.0/schema.json" + "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json" ], "id": "landsat-8", "type": "Collection", diff --git a/examples/item.json b/examples/item.json index 895b94c..daed126 100644 --- a/examples/item.json +++ b/examples/item.json @@ -1,7 +1,7 @@ { "stac_version": "1.0.0", "stac_extensions": [ - "https://stac-extensions.github.io/timestamps/v1.0.0/schema.json" + "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json" ], "id": "LC08_L1TP_107018_20181001", "type": "Feature", diff --git a/json-schema/schema.json b/json-schema/schema.json index 0f92f6e..bfadac1 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/timestamps/v1.0.0/schema.json#", + "$id": "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json#", "title": "Timestamps Extension", "description": "STAC Timestamps Extension to a STAC Item.", "oneOf": [ @@ -102,7 +102,7 @@ "stac_extensions": { "type": "array", "contains": { - "const": "https://stac-extensions.github.io/timestamps/v1.0.0/schema.json" + "const": "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json" } } } diff --git a/package.json b/package.json index 4c2a918..1841f9e 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { - "name": "stac-extensions", - "version": "1.0.0", + "name": "timestamps", + "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/timestamps/v1.0.0/schema.json=./json-schema/schema.json", - "format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/timestamps/v1.0.0/schema.json=./json-schema/schema.json" + "check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/timestamps/v1.1.0/schema.json=./json-schema/schema.json", + "format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/timestamps/v1.1.0/schema.json=./json-schema/schema.json" }, "dependencies": { "remark-cli": "^8.0.0",