From a1b3d8840bbc7d93d38cef029c8684e3f0dcfe0a Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Thu, 27 Nov 2025 20:19:25 +0100 Subject: [PATCH] v1.3.0 --- CHANGELOG.md | 5 ++++- README.md | 2 +- examples/collection.json | 2 +- examples/item.json | 2 +- json-schema/schema.json | 4 ++-- package.json | 6 +++--- 6 files changed, 12 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4814c67..326b52c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.3.0] + ### Added - PMTiles @@ -46,7 +48,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release for TileJSON, WMTS and XYZ. -[Unreleased]: +[Unreleased]: +[1.3.0]: [1.2.0]: [1.1.0]: [1.0.0]: diff --git a/README.md b/README.md index ce6607c..4d1991b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Web Map Links Extension Specification - **Title:** Web Map Links -- **Identifier:** +- **Identifier:** - **Field Name Prefix:** none, but each relation type has potentially a distinct prefix for additional data (e.g. `wmts` and `xyz`) - **Scope:** Item, Catalog, Collection - **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Proposal diff --git a/examples/collection.json b/examples/collection.json index f0257bd..b41eaef 100644 --- a/examples/collection.json +++ b/examples/collection.json @@ -1,7 +1,7 @@ { "stac_version": "1.0.0", "stac_extensions": [ - "https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json" + "https://stac-extensions.github.io/web-map-links/v1.3.0/schema.json" ], "type": "Collection", "id": "collection", diff --git a/examples/item.json b/examples/item.json index e39fca9..ade38bf 100644 --- a/examples/item.json +++ b/examples/item.json @@ -1,7 +1,7 @@ { "stac_version": "1.0.0", "stac_extensions": [ - "https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json" + "https://stac-extensions.github.io/web-map-links/v1.3.0/schema.json" ], "type": "Feature", "id": "item", diff --git a/json-schema/schema.json b/json-schema/schema.json index 06a1fba..c6454d8 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/web-map-links/v1.2.0/schema.json#", + "$id": "https://stac-extensions.github.io/web-map-links/v1.3.0/schema.json#", "title": "Web Map Links Extension", "description": "STAC Web Map Links Extension for STAC Items, STAC Catalogs and STAC Collections.", "type": "object", @@ -13,7 +13,7 @@ "stac_extensions": { "type": "array", "contains": { - "const": "https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json" + "const": "https://stac-extensions.github.io/web-map-links/v1.3.0/schema.json" } }, "type": { diff --git a/package.json b/package.json index 91ae862..b3c105f 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { "name": "stac-extensions", - "version": "1.2.0", + "version": "1.3.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/web-map-links/v1.2.0/schema.json=./json-schema/schema.json", - "format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json=./json-schema/schema.json" + "check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/web-map-links/v1.3.0/schema.json=./json-schema/schema.json", + "format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/web-map-links/v1.3.0/schema.json=./json-schema/schema.json" }, "dependencies": { "remark-cli": "^8.0.0",