Skip to content

Commit

Permalink
v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed May 3, 2023
1 parent e5e5de9 commit 9e74fa7
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 12 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v2.2.0] - 2023-05-03

### Added

- A new Spatial Vector Cube Dimension for geometries
Expand Down Expand Up @@ -47,7 +49,8 @@ Initial independent release, see [previous history](https://github.com/radiantea
### Changed
- Units for STAC dimensions should now be compliant to UDUNITS-2 units (singular) whenever available.

[Unreleased]: <https://github.com/stac-extensions/datacube/compare/v2.1.0...HEAD>
[Unreleased]: <https://github.com/stac-extensions/datacube/compare/v2.2.0...HEAD>
[v2.2.0]: <https://github.com/stac-extensions/datacube/compare/v2.1.0...v2.2.0>
[v2.1.0]: <https://github.com/stac-extensions/datacube/compare/v2.0.0...v2.1.0>
[v2.0.0]: <https://github.com/stac-extensions/datacube/compare/v1.0.0...v2.0.0>
[v1.0.0]: <https://github.com/stac-extensions/datacube/tree/v1.0.0>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Datacube Extension Specification

- **Title:** Datacube
- **Identifier:** <https://stac-extensions.github.io/datacube/v2.1.0/schema.json>
- **Identifier:** <https://stac-extensions.github.io/datacube/v2.2.0/schema.json>
- **Field Name Prefix:** cube
- **Scope:** Item, Collection
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Candidate
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.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/datacube/v2.1.0/schema.json"
"https://stac-extensions.github.io/datacube/v2.2.0/schema.json"
],
"type": "Collection",
"id": "Sentinel2-L1C",
Expand Down
2 changes: 1 addition & 1 deletion examples/daymet-hi-annual.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/datacube/v2.1.0/schema.json"
"https://stac-extensions.github.io/datacube/v2.2.0/schema.json"
],
"type": "Collection",
"id": "daymet-hi-annual",
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.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/datacube/v2.1.0/schema.json"
"https://stac-extensions.github.io/datacube/v2.2.0/schema.json"
],
"id": "datacube-123",
"type": "Feature",
Expand Down
2 changes: 1 addition & 1 deletion examples/item_asset.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/datacube/v2.1.0/schema.json"
"https://stac-extensions.github.io/datacube/v2.2.0/schema.json"
],
"id": "datacube-123",
"type": "Feature",
Expand Down
2 changes: 1 addition & 1 deletion examples/vector.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/datacube/v2.1.0/schema.json"
"https://stac-extensions.github.io/datacube/v2.2.0/schema.json"
],
"id": "vector-datacube",
"type": "Feature",
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://stac-extensions.github.io/datacube/v2.1.0/schema.json",
"$id": "https://stac-extensions.github.io/datacube/v2.2.0/schema.json",
"title": "Datacube Extension",
"description": "STAC Datacube Extension for STAC Items and STAC Collections.",
"oneOf": [
Expand Down Expand Up @@ -172,7 +172,7 @@
"stac_extensions": {
"type": "array",
"contains": {
"const": "https://stac-extensions.github.io/datacube/v2.1.0/schema.json"
"const": "https://stac-extensions.github.io/datacube/v2.2.0/schema.json"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "stac-extensions",
"version": "2.1.0",
"version": "2.2.0",
"scripts": {
"test": "npm run check-markdown && npm run check-examples",
"check-markdown": "remark . -f -r .github/remark.yaml",
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/datacube/v2.1.0/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/datacube/v2.1.0/schema.json=./json-schema/schema.json"
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/datacube/v2.2.0/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/datacube/v2.2.0/schema.json=./json-schema/schema.json"
},
"dependencies": {
"remark-cli": "^8.0.0",
Expand Down

0 comments on commit 9e74fa7

Please sign in to comment.