Skip to content

Commit 6c2123c

Browse files
authored
Release v1.0.0 (#5)
1 parent 8ba3d5d commit 6c2123c

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
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.0.0] - 2025-07-15
10+
911
### Added
1012

1113
- The country can be an ISO 3166-1 country code
@@ -42,7 +44,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4244

4345
- First release based on OGC API - Records
4446

45-
[Unreleased]: <https://github.com/stac-extensions/contacts/compare/v0.1.1...HEAD>
47+
[Unreleased]: <https://github.com/stac-extensions/contacts/compare/v1.0.0...HEAD>
48+
[1.0.0]: <https://github.com/stac-extensions/contacts/compare/v0.1.1...v1.0.0>
4649
[0.1.1]: <https://github.com/stac-extensions/contacts/compare/v0.1.0...v0.1.1>
4750
[0.1.0]: <https://github.com/stac-extensions/contacts/compare/v0.0.1...v0.1.0>
4851
[0.0.1]: <https://github.com/stac-extensions/contacts/tree/v0.0.1>

README.md

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

33
- **Title:** Contacts
4-
- **Identifier:** <https://stac-extensions.github.io/contacts/v0.1.1/schema.json>
4+
- **Identifier:** <https://stac-extensions.github.io/contacts/v1.0.0/schema.json>
55
- **Field Name Prefix:** -
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/contacts/v0.1.1/schema.json"
4+
"https://stac-extensions.github.io/contacts/v1.0.0/schema.json"
55
],
66
"type": "Collection",
77
"id": "collection",

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/contacts/v0.1.1/schema.json#",
3+
"$id": "https://stac-extensions.github.io/contacts/v1.0.0/schema.json#",
44
"title": "Contacts Extension",
55
"description": "STAC Contacts Extension for STAC Catalogs, Collections and Items.",
66
"type": "object",
@@ -11,7 +11,7 @@
1111
"stac_extensions": {
1212
"type": "array",
1313
"contains": {
14-
"const": "https://stac-extensions.github.io/contacts/v0.1.1/schema.json"
14+
"const": "https://stac-extensions.github.io/contacts/v1.0.0/schema.json"
1515
}
1616
}
1717
},

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": "0.1.1",
3+
"version": "1.0.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/contacts/v0.1.1/schema.json=./json-schema/schema.json",
8-
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/contacts/v0.1.1/schema.json=./json-schema/schema.json"
7+
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/contacts/v1.0.0/schema.json=./json-schema/schema.json",
8+
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/contacts/v1.0.0/schema.json=./json-schema/schema.json"
99
},
1010
"dependencies": {
1111
"remark-cli": "^8.0.0",

0 commit comments

Comments
 (0)