Skip to content

Commit dcaf4b7

Browse files
committed
v1.3.0
1 parent 203e8fb commit dcaf4b7

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.3.0]
10+
911
### Added
1012

1113
- PMTiles

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Web Map Links Extension Specification
22

33
- **Title:** Web Map Links
4-
- **Identifier:** <https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json>
4+
- **Identifier:** <https://stac-extensions.github.io/web-map-links/v1.3.0/schema.json>
55
- **Field Name Prefix:** none, but each relation type has potentially a distinct prefix for additional data (e.g. `wmts` and `xyz`)
66
- **Scope:** Item, Catalog, Collection
77
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Proposal

examples/collection.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"stac_version": "1.0.0",
33
"stac_extensions": [
4-
"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json"
4+
"https://stac-extensions.github.io/web-map-links/v1.3.0/schema.json"
55
],
66
"type": "Collection",
77
"id": "collection",

examples/item.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"stac_version": "1.0.0",
33
"stac_extensions": [
4-
"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json"
4+
"https://stac-extensions.github.io/web-map-links/v1.3.0/schema.json"
55
],
66
"type": "Feature",
77
"id": "item",

json-schema/schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json#",
3+
"$id": "https://stac-extensions.github.io/web-map-links/v1.3.0/schema.json#",
44
"title": "Web Map Links Extension",
55
"description": "STAC Web Map Links Extension for STAC Items, STAC Catalogs and STAC Collections.",
66
"type": "object",
@@ -13,7 +13,7 @@
1313
"stac_extensions": {
1414
"type": "array",
1515
"contains": {
16-
"const": "https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json"
16+
"const": "https://stac-extensions.github.io/web-map-links/v1.3.0/schema.json"
1717
}
1818
},
1919
"type": {

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "stac-extensions",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"scripts": {
55
"test": "npm run check-markdown && npm run check-examples",
66
"check-markdown": "remark . -f -r .github/remark.yaml",
7-
"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",
8-
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json=./json-schema/schema.json"
7+
"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",
8+
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/web-map-links/v1.3.0/schema.json=./json-schema/schema.json"
99
},
1010
"dependencies": {
1111
"remark-cli": "^8.0.0",

0 commit comments

Comments
 (0)