From 67ef82e5521fdf3e0a24d840d5b3f32c48ffb961 Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Thu, 11 May 2023 20:35:29 +0200 Subject: [PATCH] v1.0.0 --- CHANGELOG.md | 7 ++++++- README.md | 2 +- examples/collection.json | 2 +- examples/item.json | 2 +- json-schema/schema.json | 4 ++-- package.json | 6 +++--- 6 files changed, 14 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9977abf..6bcac84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,9 +16,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +## [1.0.0] - 2023-05-11 + +- Final alignment with OGC API - Records, just minor changes to schema and documentation. + ## [0.0.1] - 2023-04-25 - First release based on OGC API - Records -[Unreleased]: +[Unreleased]: +[1.0.0]: [0.0.1]: diff --git a/README.md b/README.md index d5abfa6..1b3c830 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Themes Extension Specification - **Title:** Themes -- **Identifier:** +- **Identifier:** - **Field Name Prefix:** - - **Scope:** Item, Catalog, Collection - **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Proposal diff --git a/examples/collection.json b/examples/collection.json index 88c71e6..7b5deb8 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/themes/v0.0.1/schema.json" + "https://stac-extensions.github.io/themes/v1.0.0/schema.json" ], "type": "Collection", "id": "collection", diff --git a/examples/item.json b/examples/item.json index 02883d3..94ebef1 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/themes/v0.0.1/schema.json" + "https://stac-extensions.github.io/themes/v1.0.0/schema.json" ], "type": "Feature", "id": "example", diff --git a/json-schema/schema.json b/json-schema/schema.json index 1a14787..56c3d6c 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/themes/v0.0.1/schema.json#", + "$id": "https://stac-extensions.github.io/themes/v1.0.0/schema.json#", "title": "Themes Extension", "description": "STAC Themes Extension for STAC Catalogs, Collections and Items.", "type": "object", @@ -11,7 +11,7 @@ "stac_extensions": { "type": "array", "contains": { - "const": "https://stac-extensions.github.io/themes/v0.0.1/schema.json" + "const": "https://stac-extensions.github.io/themes/v1.0.0/schema.json" } } }, diff --git a/package.json b/package.json index 1a4d4a8..cb69373 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { "name": "stac-extensions", - "version": "0.0.1", + "version": "1.0.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/themes/v0.0.1/schema.json=./json-schema/schema.json", - "format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/themes/v0.0.1/schema.json=./json-schema/schema.json" + "check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/themes/v1.0.0/schema.json=./json-schema/schema.json", + "format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/themes/v1.0.0/schema.json=./json-schema/schema.json" }, "dependencies": { "remark-cli": "^8.0.0",