From 7dfb878650ec128bd966eb4b680a1fca0f2fd4af Mon Sep 17 00:00:00 2001 From: Emmanuel Mathot Date: Tue, 19 Nov 2024 23:24:18 +0100 Subject: [PATCH] releasing v2.0.0 --- README.md | 2 +- examples/collection.json | 2 +- examples/item-landsat8.json | 2 +- examples/item-sentinel2.json | 2 +- json-schema/schema.json | 4 ++-- package.json | 6 +++--- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 32b27d8..d9e6b77 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Rendering Extension Specification - **Title:** Rendering -- **Identifier:** +- **Identifier:** - **Field Name Prefix:** renders - **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 bfd8da2..5d6182d 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/render/v1.0.0/schema.json", + "https://stac-extensions.github.io/render/v2.0.0/schema.json", "https://stac-extensions.github.io/virtual-assets/v1.0.0/schema.json" ], "type": "Collection", diff --git a/examples/item-landsat8.json b/examples/item-landsat8.json index b6baa25..e1e8b60 100644 --- a/examples/item-landsat8.json +++ b/examples/item-landsat8.json @@ -5,7 +5,7 @@ "https://stac-extensions.github.io/eo/v1.0.0/schema.json", "https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/view/v1.0.0/schema.json", - "https://stac-extensions.github.io/render/v1.0.0/schema.json", + "https://stac-extensions.github.io/render/v2.0.0/schema.json", "https://stac-extensions.github.io/virtual-assets/v1.0.0/schema.json", "https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json" ], diff --git a/examples/item-sentinel2.json b/examples/item-sentinel2.json index 8988a4d..8dd3407 100644 --- a/examples/item-sentinel2.json +++ b/examples/item-sentinel2.json @@ -6,7 +6,7 @@ "https://stac-extensions.github.io/view/v1.0.0/schema.json", "https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.0.0/schema.json", - "https://stac-extensions.github.io/render/v1.0.0/schema.json", + "https://stac-extensions.github.io/render/v2.0.0/schema.json", "https://stac-extensions.github.io/virtual-assets/v1.0.0/schema.json" ], "id": "S2B_33SVB_20210221_0_L2A", diff --git a/json-schema/schema.json b/json-schema/schema.json index cd632a1..889c1f9 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/render/v1.0.0/schema.json#", + "$id": "https://stac-extensions.github.io/render/v2.0.0/schema.json#", "title": "Rendering Extension", "description": "STAC Rendering Extension for STAC Items and STAC Collections.", "oneOf": [ @@ -137,7 +137,7 @@ "stac_extensions": { "type": "array", "contains": { - "const": "https://stac-extensions.github.io/render/v1.0.0/schema.json" + "const": "https://stac-extensions.github.io/render/v2.0.0/schema.json" } } } diff --git a/package.json b/package.json index f063cb9..894ed5c 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { "name": "stac-extensions", - "version": "1.0.0", + "version": "2.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/render/v1.0.0/schema.json=./json-schema/schema.json --schemaMap https://stac-extensions.github.io/virtual-assets/v1.0.0/schema.json=./json-schema/schema-vrt.json", - "format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/render/v1.0.0/schema.json=./json-schema/schema.json" + "check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/render/v2.0.0/schema.json=./json-schema/schema.json --schemaMap https://stac-extensions.github.io/virtual-assets/v1.0.0/schema.json=./json-schema/schema-vrt.json", + "format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/render/v2.0.0/schema.json=./json-schema/schema.json" }, "dependencies": { "remark-cli": "^8.0.0",