From 2017fb4c1f9650b84e7c4b6a7a425ae079558015 Mon Sep 17 00:00:00 2001 From: Emmanuel Mathot Date: Wed, 5 Jun 2024 12:27:33 +0200 Subject: [PATCH] ready to release 1.1.0 --- CHANGELOG.md | 11 ++++++++--- README.md | 2 +- examples/acquisition.json | 2 +- examples/activation.json | 2 +- examples/area.json | 2 +- examples/call-collection.json | 2 +- json-schema/schema.json | 4 ++-- package.json | 4 ++-- 8 files changed, 17 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ecb031c..0e9a059 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,17 +10,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -- Disaster types enumeration have been updated ([#3](https://github.com/terradue/disasterscharter/pull/3)) - ### Deprecated ### Removed ### Fixed +## [1.1.0] - 2024-06-05 + +### Changed + +- Disaster types enumeration have been updated ([#3](https://github.com/terradue/disasterscharter/pull/3)) + ## [1.0.0] - 2023-02-06 Initial release of the Disasters Charter extension. -[Unreleased]: +[Unreleased]: +[1.1.0]: [1.0.0]: diff --git a/README.md b/README.md index b6ff910..0b670d1 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Disasters Charter Extension Specification - **Title:** Disasters Charter -- **Identifier:** +- **Identifier:** - **Field Name Prefix:** disaster - **Scope:** Item, Collection - **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Proposal diff --git a/examples/acquisition.json b/examples/acquisition.json index 5c3dc82..86df325 100644 --- a/examples/acquisition.json +++ b/examples/acquisition.json @@ -8,7 +8,7 @@ "https://stac-extensions.github.io/sat/v1.0.0/schema.json", "https://stac-extensions.github.io/version/v1.0.0/schema.json", "https://stac-extensions.github.io/view/v1.0.0/schema.json", - "https://terradue.github.io/stac-extensions-disaster/v1.0.0/schema.json" + "https://terradue.github.io/stac-extensions-disaster/v1.1.0/schema.json" ], "type": "Feature", "id": "PT01S19_668124W174_3455752022011600000000MS00_GG003002001-calibrated", diff --git a/examples/activation.json b/examples/activation.json index ffcdea9..8ddd525 100644 --- a/examples/activation.json +++ b/examples/activation.json @@ -2,7 +2,7 @@ "stac_version": "1.0.0", "stac_extensions": [ "https://stac-extensions.github.io/version/v1.0.0/schema.json", - "https://terradue.github.io/stac-extensions-disaster/v1.0.0/schema.json" + "https://terradue.github.io/stac-extensions-disaster/v1.1.0/schema.json" ], "type": "Feature", "id": "act-744", diff --git a/examples/area.json b/examples/area.json index f70accd..794883e 100644 --- a/examples/area.json +++ b/examples/area.json @@ -2,7 +2,7 @@ "stac_version": "1.0.0", "stac_extensions": [ "https://stac-extensions.github.io/version/v1.0.0/schema.json", - "https://terradue.github.io/stac-extensions-disaster/v1.0.0/schema.json" + "https://terradue.github.io/stac-extensions-disaster/v1.1.0/schema.json" ], "type": "Feature", "id": "AOI1", diff --git a/examples/call-collection.json b/examples/call-collection.json index c8f9181..3c1433c 100644 --- a/examples/call-collection.json +++ b/examples/call-collection.json @@ -8,7 +8,7 @@ "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/view/v1.0.0/schema.json", - "https://terradue.github.io/stac-extensions-disaster/v1.0.0/schema.json" + "https://terradue.github.io/stac-extensions-disaster/v1.1.0/schema.json" ], "links": [], "type": "Collection", diff --git a/json-schema/schema.json b/json-schema/schema.json index 1a16083..0047f96 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://terradue.github.io/stac-extensions-disaster/v1.0.0/schema.json#", + "$id": "https://terradue.github.io/stac-extensions-disaster/v1.1.0/schema.json#", "title": "Disaster Charter Extension", "description": "STAC Disaster Charter Extension for STAC Items and STAC Collections.", "oneOf": [ @@ -94,7 +94,7 @@ "stac_extensions": { "type": "array", "contains": { - "const": "https://terradue.github.io/stac-extensions-disaster/v1.0.0/schema.json" + "const": "https://terradue.github.io/stac-extensions-disaster/v1.1.0/schema.json" } } } diff --git a/package.json b/package.json index 4d1d159..6740863 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://terradue.github.io/stac-extensions-disaster/v1.0.0/schema.json=./json-schema/schema.json", - "format-examples": "stac-node-validator . --format --schemaMap https://terradue.github.io/stac-extensions-disaster/v1.0.0/schema.jsonn=./json-schema/schema.json" + "check-examples": "stac-node-validator . --lint --verbose --schemaMap https://terradue.github.io/stac-extensions-disaster/v1.1.0/schema.json=./json-schema/schema.json", + "format-examples": "stac-node-validator . --format --schemaMap https://terradue.github.io/stac-extensions-disaster/v1.1.0/schema.jsonn=./json-schema/schema.json" }, "dependencies": { "remark-cli": "^8.0.0",