diff --git a/CHANGELOG.md b/CHANGELOG.md index 610250b..04caf01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,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] +## [v2.0.0] ## [v2.0.0-beta.1] @@ -46,7 +46,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release -[Unreleased]: +[v2.0.0]: [v2.0.0-beta.1]: [v1.1.0]: [v1.0.0]: diff --git a/README.md b/README.md index 91f7ea2..496c9d4 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Raster Extension Specification - **Title:** Raster -- **Identifier:** +- **Identifier:** - **Field Name Prefix:** raster - **Scope:** Item, Collection - **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Candidate diff --git a/examples/item-planet.json b/examples/item-planet.json index 508de55..736442e 100644 --- a/examples/item-planet.json +++ b/examples/item-planet.json @@ -3,9 +3,9 @@ "https://stac-extensions.github.io/sat/v1.0.0/schema.json", "https://stac-extensions.github.io/view/v1.0.0/schema.json", "https://stac-extensions.github.io/projection/v2.0.0/schema.json", - "https://stac-extensions.github.io/eo/v2.0.0-beta.1/schema.json", + "https://stac-extensions.github.io/eo/v2.0.0/schema.json", "https://stac-extensions.github.io/processing/v1.2.0/schema.json", - "https://stac-extensions.github.io/raster/v2.0.0-beta.1/schema.json" + "https://stac-extensions.github.io/raster/v2.0.0/schema.json" ], "stac_version": "1.1.0-beta.1", "links": [], diff --git a/examples/item-sentinel2.json b/examples/item-sentinel2.json index 25f36e3..5e31281 100644 --- a/examples/item-sentinel2.json +++ b/examples/item-sentinel2.json @@ -2,10 +2,10 @@ "type": "Feature", "stac_version": "1.1.0-beta.1", "stac_extensions": [ - "https://stac-extensions.github.io/eo/v2.0.0-beta.1/schema.json", + "https://stac-extensions.github.io/eo/v2.0.0/schema.json", "https://stac-extensions.github.io/view/v1.0.0/schema.json", "https://stac-extensions.github.io/projection/v2.0.0/schema.json", - "https://stac-extensions.github.io/raster/v2.0.0-beta.1/schema.json" + "https://stac-extensions.github.io/raster/v2.0.0/schema.json" ], "id": "S2B_33SVB_20210221_0_L2A", "bbox": [ diff --git a/json-schema/schema.json b/json-schema/schema.json index 4abacac..bd01ac9 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/raster/v2.0.0-beta.1/schema.json#", + "$id": "https://stac-extensions.github.io/raster/v2.0.0/schema.json#", "title": "Raster Extension", "description": "STAC Raster Extension for STAC Items and STAC Collections.", "type": "object", @@ -9,7 +9,7 @@ "stac_extensions": { "type": "array", "contains": { - "const": "https://stac-extensions.github.io/raster/v2.0.0-beta.1/schema.json" + "const": "https://stac-extensions.github.io/raster/v2.0.0/schema.json" } } }, diff --git a/package.json b/package.json index ff783a1..5de4982 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { "name": "stac-extensions", - "version": "2.0.0-beta.1", + "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/raster/v2.0.0-beta.1/schema.json=./json-schema/schema.json", - "format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/raster/v2.0.0-beta.1/schema.json=./json-schema/schema.json" + "check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/raster/v2.0.0/schema.json=./json-schema/schema.json", + "format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/raster/v2.0.0/schema.json=./json-schema/schema.json" }, "dependencies": { "remark-cli": "^8.0.0",