Skip to content

Commit

Permalink
release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhealy1 committed Nov 5, 2024
1 parent bb5506d commit c8ed7a9
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

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

- move extension to stacchain org

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

- first release

[Unreleased]: https://github.com/stacchain/merkle-tree-stac-extension/tree/v1.0.0-beta.3...main
[v1.0.0-beta.3]: https://github.com/stacchain/merkle-tree-stac-extension/tree/v1.0.0-beta.2...v1.0.0-beta.3
[Unreleased]: https://github.com/stacchain/merkle-tree-stac-extension/tree/v1.0.0...main
[v1.0.0]: https://github.com/stacchain/merkle-tree-stac-extension/tree/v1.0.0-beta.2...v1.0.0
[v1.0.0-beta.2]: https://github.com/stacchain/merkle-tree-stac-extension/tree/v1.0.0-beta.1...v1.0.0-beta.2
[v1.0.0-beta.1]: https://github.com/stacchain/merkle-tree-stac-extension/tree/v1.0.0-beta.1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Merkle Tree Extension Specification

- **Title:** Merkle Tree
- **Identifier:** <https://stacchain.github.io/merkle-tree/v1.0.0-beta.3/schema.json>
- **Identifier:** <https://stacchain.github.io/merkle-tree/v1.0.0/schema.json>
- **Field Name Prefix:** `merkle`
- **Scope:** Item, Collection, Catalog
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Proposal
Expand Down
2 changes: 1 addition & 1 deletion examples/catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"id": "catalog-001",
"description": "Sample Catalog with Merkle Root",
"stac_extensions": [
"https://stacchain.github.io/merkle-tree/v1.0.0-beta.3/schema.json"
"https://stacchain.github.io/merkle-tree/v1.0.0/schema.json"
],
"merkle:object_hash": "abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890",
"merkle:root": "f1e2d3c4b5a67890abcdef1234567890abcdef1234567890abcdef1234567890",
Expand Down
2 changes: 1 addition & 1 deletion examples/collection.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"stac_version": "1.1.0",
"stac_extensions": [
"https://stacchain.github.io/merkle-tree/v1.0.0-beta.3/schema.json"
"https://stacchain.github.io/merkle-tree/v1.0.0/schema.json"
],
"type": "Collection",
"id": "collection-123",
Expand Down
2 changes: 1 addition & 1 deletion examples/item.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"stac_version": "1.1.0",
"stac_extensions": [
"https://stacchain.github.io/merkle-tree/v1.0.0-beta.3/schema.json"
"https://stacchain.github.io/merkle-tree/v1.0.0/schema.json"
],
"type": "Feature",
"id": "item-123",
Expand Down
4 changes: 2 additions & 2 deletions json-schema/schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://stacchain.github.io/merkle-tree/v1.0.0-beta.3/schema.json#",
"$id": "https://stacchain.github.io/merkle-tree/v1.0.0/schema.json#",
"title": "Merkle Tree Root Extension",
"description": "An extension to ensure metadata integrity for STAC Items, Collections, and Catalogs by encoding them in a Merkle tree via hashing.",
"oneOf": [
Expand Down Expand Up @@ -113,7 +113,7 @@
"stac_extensions": {
"type": "array",
"contains": {
"const": "https://stacchain.github.io/merkle-tree/v1.0.0-beta.3/schema.json"
"const": "https://stacchain.github.io/merkle-tree/v1.0.0/schema.json"
}
}
}
Expand Down

0 comments on commit c8ed7a9

Please sign in to comment.