Skip to content

Commit c8ed7a9

Browse files
committed
release v1.0.0
1 parent bb5506d commit c8ed7a9

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

Diff for: CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717

1818
### Fixed
1919

20-
## [v1.0.0-beta.3] - 2024-11-05
20+
## [v1.0.0] - 2024-11-05
2121

2222
- move extension to stacchain org
2323

@@ -29,7 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2929

3030
- first release
3131

32-
[Unreleased]: https://github.com/stacchain/merkle-tree-stac-extension/tree/v1.0.0-beta.3...main
33-
[v1.0.0-beta.3]: https://github.com/stacchain/merkle-tree-stac-extension/tree/v1.0.0-beta.2...v1.0.0-beta.3
32+
[Unreleased]: https://github.com/stacchain/merkle-tree-stac-extension/tree/v1.0.0...main
33+
[v1.0.0]: https://github.com/stacchain/merkle-tree-stac-extension/tree/v1.0.0-beta.2...v1.0.0
3434
[v1.0.0-beta.2]: https://github.com/stacchain/merkle-tree-stac-extension/tree/v1.0.0-beta.1...v1.0.0-beta.2
3535
[v1.0.0-beta.1]: https://github.com/stacchain/merkle-tree-stac-extension/tree/v1.0.0-beta.1

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Merkle Tree Extension Specification
22

33
- **Title:** Merkle Tree
4-
- **Identifier:** <https://stacchain.github.io/merkle-tree/v1.0.0-beta.3/schema.json>
4+
- **Identifier:** <https://stacchain.github.io/merkle-tree/v1.0.0/schema.json>
55
- **Field Name Prefix:** `merkle`
66
- **Scope:** Item, Collection, Catalog
77
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Proposal

Diff for: examples/catalog.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"id": "catalog-001",
55
"description": "Sample Catalog with Merkle Root",
66
"stac_extensions": [
7-
"https://stacchain.github.io/merkle-tree/v1.0.0-beta.3/schema.json"
7+
"https://stacchain.github.io/merkle-tree/v1.0.0/schema.json"
88
],
99
"merkle:object_hash": "abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890",
1010
"merkle:root": "f1e2d3c4b5a67890abcdef1234567890abcdef1234567890abcdef1234567890",

Diff for: examples/collection.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"stac_version": "1.1.0",
33
"stac_extensions": [
4-
"https://stacchain.github.io/merkle-tree/v1.0.0-beta.3/schema.json"
4+
"https://stacchain.github.io/merkle-tree/v1.0.0/schema.json"
55
],
66
"type": "Collection",
77
"id": "collection-123",

Diff for: examples/item.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"stac_version": "1.1.0",
33
"stac_extensions": [
4-
"https://stacchain.github.io/merkle-tree/v1.0.0-beta.3/schema.json"
4+
"https://stacchain.github.io/merkle-tree/v1.0.0/schema.json"
55
],
66
"type": "Feature",
77
"id": "item-123",

Diff for: json-schema/schema.json

+2-2
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://stacchain.github.io/merkle-tree/v1.0.0-beta.3/schema.json#",
3+
"$id": "https://stacchain.github.io/merkle-tree/v1.0.0/schema.json#",
44
"title": "Merkle Tree Root Extension",
55
"description": "An extension to ensure metadata integrity for STAC Items, Collections, and Catalogs by encoding them in a Merkle tree via hashing.",
66
"oneOf": [
@@ -113,7 +113,7 @@
113113
"stac_extensions": {
114114
"type": "array",
115115
"contains": {
116-
"const": "https://stacchain.github.io/merkle-tree/v1.0.0-beta.3/schema.json"
116+
"const": "https://stacchain.github.io/merkle-tree/v1.0.0/schema.json"
117117
}
118118
}
119119
}

0 commit comments

Comments
 (0)