Skip to content

Commit 57ed7bb

Browse files
authored
Release v2.3.0 (#24)
* Make use of common metadata fields #22 * v2.3.0 release
1 parent 03409fd commit 57ed7bb

File tree

9 files changed

+15
-12
lines changed

9 files changed

+15
-12
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+
## [v2.3.0] - 2025-06-18
10+
911
### Added
1012

1113
- Variables: Added `nodata` and `data_type` from
@@ -63,7 +65,8 @@ Initial independent release, see [previous history](https://github.com/radiantea
6365

6466
- Units for STAC dimensions should now be compliant to UDUNITS-2 units (singular) whenever available.
6567

66-
[Unreleased]: <https://github.com/stac-extensions/datacube/compare/v2.2.0...HEAD>
68+
[Unreleased]: <https://github.com/stac-extensions/datacube/compare/v2.3.0...HEAD>
69+
[v2.3.0]: <https://github.com/stac-extensions/datacube/compare/v2.2.0...v2.3.0>
6770
[v2.2.0]: <https://github.com/stac-extensions/datacube/compare/v2.1.0...v2.2.0>
6871
[v2.1.0]: <https://github.com/stac-extensions/datacube/compare/v2.0.0...v2.1.0>
6972
[v2.0.0]: <https://github.com/stac-extensions/datacube/compare/v1.0.0...v2.0.0>

README.md

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

33
- **Title:** Datacube
4-
- **Identifier:** <https://stac-extensions.github.io/datacube/v2.2.0/schema.json>
4+
- **Identifier:** <https://stac-extensions.github.io/datacube/v2.3.0/schema.json>
55
- **Field Name Prefix:** cube
66
- **Scope:** Item, Collection
77
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Candidate

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.1.0",
33
"stac_extensions": [
4-
"https://stac-extensions.github.io/datacube/v2.2.0/schema.json"
4+
"https://stac-extensions.github.io/datacube/v2.3.0/schema.json"
55
],
66
"type": "Collection",
77
"id": "Sentinel2-L1C",

examples/daymet-hi-annual.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"stac_version": "1.1.0",
33
"stac_extensions": [
4-
"https://stac-extensions.github.io/datacube/v2.2.0/schema.json"
4+
"https://stac-extensions.github.io/datacube/v2.3.0/schema.json"
55
],
66
"type": "Collection",
77
"id": "daymet-hi-annual",

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.1.0",
33
"stac_extensions": [
4-
"https://stac-extensions.github.io/datacube/v2.2.0/schema.json"
4+
"https://stac-extensions.github.io/datacube/v2.3.0/schema.json"
55
],
66
"id": "datacube-123",
77
"type": "Feature",

examples/item_asset.json

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

examples/vector.json

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

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/datacube/v2.2.0/schema.json",
3+
"$id": "https://stac-extensions.github.io/datacube/v2.3.0/schema.json",
44
"title": "Datacube Extension",
55
"description": "STAC Datacube Extension for STAC Items and STAC Collections.",
66
"oneOf": [
@@ -172,7 +172,7 @@
172172
"stac_extensions": {
173173
"type": "array",
174174
"contains": {
175-
"const": "https://stac-extensions.github.io/datacube/v2.2.0/schema.json"
175+
"const": "https://stac-extensions.github.io/datacube/v2.3.0/schema.json"
176176
}
177177
}
178178
}

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": "2.2.0",
3+
"version": "2.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/datacube/v2.2.0/schema.json=./json-schema/schema.json",
8-
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/datacube/v2.2.0/schema.json=./json-schema/schema.json"
7+
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/datacube/v2.3.0/schema.json=./json-schema/schema.json",
8+
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/datacube/v2.3.0/schema.json=./json-schema/schema.json"
99
},
1010
"dependencies": {
1111
"remark-cli": "^8.0.0",

0 commit comments

Comments
 (0)