diff --git a/CHANGELOG.md b/CHANGELOG.md index 0165690..0d480d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [2.0.0] - 2024-11-19 ### Added @@ -12,12 +12,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Place 'renders' object in Item properties [#4](https://github.com/stac-extensions/render/issues/4) + ### Deprecated ### Removed ### Fixed -- Place 'renders' object in Item properties [#4](https://github.com/stac-extensions/render/issues/4) +## [1.0.0] - 2023-12-19 + +Initial release -[Unreleased]: +[2.0.0]: +[1.0.0]: 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",