From 836bcd509130e4c2f99561fcaa298f467457b0ab Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Tue, 12 Mar 2024 17:34:43 +0100 Subject: [PATCH] Update version number --- CHANGELOG.md | 5 ++++- README.md | 2 +- examples/collection.json | 2 +- examples/item.json | 2 +- json-schema/schema.json | 4 ++-- package.json | 4 ++-- 6 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f3be54..9b51ed8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v1.2.0] - 2023-03-15 + ### Added - Added a new field `name` to the Alternate Asset Object @@ -35,6 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Initial release -[Unreleased]: +[Unreleased]: +[v1.2.0]: [v1.1.0]: [v1.0.0]: diff --git a/README.md b/README.md index 9a1437b..0339cc6 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Alternate Assets Extension Specification - **Title:** Alternate Assets -- **Identifier:** +- **Identifier:** - **Field Name Prefix:** - - **Scope:** Item, Collection - **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Pilot diff --git a/examples/collection.json b/examples/collection.json index c8d600b..31f061e 100644 --- a/examples/collection.json +++ b/examples/collection.json @@ -2,7 +2,7 @@ "stac_version": "1.0.0", "stac_extensions": [ "https://stac-extensions.github.io/item-assets/v1.0.0/schema.json", - "https://stac-extensions.github.io/alternate-assets/v1.1.0/schema.json" + "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json" ], "type": "Collection", "id": "collection-1", diff --git a/examples/item.json b/examples/item.json index 7811c7e..90090e7 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/alternate-assets/v1.1.0/schema.json" + "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json" ], "type": "Feature", "id": "item", diff --git a/json-schema/schema.json b/json-schema/schema.json index c577230..ea2a785 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/alternate-assets/v1.1.0/schema.json#", + "$id": "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json#", "title": "Alternate Assets Extension", "description": "STAC Alternate Assets Extension for STAC Items and STAC Collections.", "type": "object", @@ -9,7 +9,7 @@ "stac_extensions": { "type": "array", "contains": { - "const": "https://stac-extensions.github.io/alternate-assets/v1.1.0/schema.json" + "const": "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json" } } }, diff --git a/package.json b/package.json index 1595844..9322c47 100644 --- a/package.json +++ b/package.json @@ -4,8 +4,8 @@ "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/alternate-assets/v1.1.0/schema.json=./json-schema/schema.json", - "format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/alternate-assets/v1.1.0/schema.json=./json-schema/schema.json" + "check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json=./json-schema/schema.json", + "format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json=./json-schema/schema.json" }, "dependencies": { "remark-cli": "^8.0.0",