diff --git a/CHANGELOG.md b/CHANGELOG.md index 801c59d..c3eedbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v2.0.0] - 2024-09-09 + ## [v2.0.0-beta.1] - 2024-08-01 ### Added @@ -65,7 +67,8 @@ Initial independent release, see [previous history](https://github.com/radiantea - `common_name` is validated as an enum (no other values allowed) -[Unreleased]: +[Unreleased]: +[v2.0.0]: [v2.0.0-beta.1]: [v1.1.0]: [v1.0.0]: diff --git a/README.md b/README.md index 3b2384e..555c37d 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Electro-Optical Extension Specification - **Title:** Electro-Optical -- **Identifier:** +- **Identifier:** - **Field Name Prefix:** eo - **Scope:** Item, Collection - **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Stable diff --git a/examples/collection.json b/examples/collection.json index bc5bce7..db519bf 100644 --- a/examples/collection.json +++ b/examples/collection.json @@ -2,8 +2,7 @@ "id": "eo-collection", "type": "Collection", "stac_extensions": [ - "https://stac-extensions.github.io/item-assets/v1.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" ], "stac_version": "1.1.0-beta.1", "description": "A simple Collection demonstrating EO extension fields in a Collection.", diff --git a/examples/item.json b/examples/item.json index 486f40e..b454a07 100644 --- a/examples/item.json +++ b/examples/item.json @@ -1,7 +1,7 @@ { "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" ], "type": "Feature", "id": "20201211_223832_CS2", diff --git a/json-schema/schema.json b/json-schema/schema.json index f278e3f..6c1bfd4 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/eo/v2.0.0-beta.1/schema.json#", + "$id": "https://stac-extensions.github.io/eo/v2.0.0/schema.json#", "title": "EO Extension", "description": "STAC EO Extension for STAC Items and STAC Collections.", "type": "object", @@ -9,7 +9,7 @@ "stac_extensions": { "type": "array", "contains": { - "const": "https://stac-extensions.github.io/eo/v2.0.0-beta.1/schema.json" + "const": "https://stac-extensions.github.io/eo/v2.0.0/schema.json" } } }, diff --git a/package.json b/package.json index 9954b29..27cfee0 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/eo/v2.0.0-beta.1/schema.json=./json-schema/schema.json", - "format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/eo/v2.0.0-beta.1/schema.json=./json-schema/schema.json" + "check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/eo/v2.0.0/schema.json=./json-schema/schema.json", + "format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/eo/v2.0.0/schema.json=./json-schema/schema.json" }, "dependencies": { "remark-cli": "^8.0.0",