Skip to content

Commit 8fe7482

Browse files
committed
v1.2.0
1 parent daf7cb9 commit 8fe7482

File tree

6 files changed

+16
-9
lines changed

6 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818

1919
### Fixed
2020

21+
## [1.2.0]
22+
23+
### Added
24+
25+
- PMTiles
26+
2127
## [1.1.0]
2228

2329
### Added
@@ -33,6 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3339

3440
- Initial release for TileJSON, WMTS and XYZ.
3541

36-
[Unreleased]: <https://github.com/stac-extensions/web-map-links/compare/v1.1.0...HEAD>
42+
[Unreleased]: <https://github.com/stac-extensions/web-map-links/compare/v1.2.0...HEAD>
43+
[1.2.0]: <https://github.com/stac-extensions/web-map-links/compare/v1.1.0...v1.2.0>
3744
[1.1.0]: <https://github.com/stac-extensions/web-map-links/compare/v1.0.0...v1.1.0>
3845
[1.0.0]: <https://github.com/stac-extensions/web-map-links/tree/v1.0.0>

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.1.0/schema.json>
4+
- **Identifier:** <https://stac-extensions.github.io/web-map-links/v1.2.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.1.0/schema.json"
4+
"https://stac-extensions.github.io/web-map-links/v1.2.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.1.0/schema.json"
4+
"https://stac-extensions.github.io/web-map-links/v1.2.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.1.0/schema.json#",
3+
"$id": "https://stac-extensions.github.io/web-map-links/v1.2.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.1.0/schema.json"
16+
"const": "https://stac-extensions.github.io/web-map-links/v1.2.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.1.0",
3+
"version": "1.2.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.1.0/schema.json=./json-schema/schema.json",
8-
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/web-map-links/v1.1.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.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"
99
},
1010
"dependencies": {
1111
"remark-cli": "^8.0.0",

0 commit comments

Comments
 (0)