Skip to content

Commit

Permalink
Merge pull request #53 from stac-extensions/v2.0.0-release
Browse files Browse the repository at this point in the history
v2.0.0 release
  • Loading branch information
emmanuelmathot authored Sep 9, 2024
2 parents 85b8653 + d9ec2be commit 5707e13
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 11 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v2.0.0]

- No changes required, please see [v2.0.0-beta.1](#v200-beta1) for details.

## [v2.0.0-beta.1]

### Added
Expand Down Expand Up @@ -46,7 +50,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release

[Unreleased]: <https://github.com/stac-extensions/raster/compare/v2.0.0-beta.1...HEAD>
[Unreleased]: <https://github.com/stac-extensions/raster/compare/v2.0.0...HEAD>
[v2.0.0]: <https://github.com/stac-extensions/raster/compare/v2.0.0-beta.1...v2.0.0>
[v2.0.0-beta.1]: <https://github.com/stac-extensions/tree/v2.0.0-beta.1>
[v1.1.0]: <https://github.com/stac-extensions/tree/v1.1.0>
[v1.0.0]: <https://github.com/stac-extensions/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 @@
# Raster Extension Specification

- **Title:** Raster
- **Identifier:** <https://stac-extensions.github.io/raster/v2.0.0-beta.1/schema.json>
- **Identifier:** <https://stac-extensions.github.io/raster/v2.0.0/schema.json>
- **Field Name Prefix:** raster
- **Scope:** Item, Collection
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Candidate
Expand Down
4 changes: 2 additions & 2 deletions examples/item-planet.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"https://stac-extensions.github.io/sat/v1.0.0/schema.json",
"https://stac-extensions.github.io/view/v1.0.0/schema.json",
"https://stac-extensions.github.io/projection/v2.0.0/schema.json",
"https://stac-extensions.github.io/eo/v2.0.0-beta.1/schema.json",
"https://stac-extensions.github.io/eo/v2.0.0/schema.json",
"https://stac-extensions.github.io/processing/v1.2.0/schema.json",
"https://stac-extensions.github.io/raster/v2.0.0-beta.1/schema.json"
"https://stac-extensions.github.io/raster/v2.0.0/schema.json"
],
"stac_version": "1.1.0-beta.1",
"links": [],
Expand Down
4 changes: 2 additions & 2 deletions examples/item-sentinel2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"type": "Feature",
"stac_version": "1.1.0-beta.1",
"stac_extensions": [
"https://stac-extensions.github.io/eo/v2.0.0-beta.1/schema.json",
"https://stac-extensions.github.io/eo/v2.0.0/schema.json",
"https://stac-extensions.github.io/view/v1.0.0/schema.json",
"https://stac-extensions.github.io/projection/v2.0.0/schema.json",
"https://stac-extensions.github.io/raster/v2.0.0-beta.1/schema.json"
"https://stac-extensions.github.io/raster/v2.0.0/schema.json"
],
"id": "S2B_33SVB_20210221_0_L2A",
"bbox": [
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/raster/v2.0.0-beta.1/schema.json#",
"$id": "https://stac-extensions.github.io/raster/v2.0.0/schema.json#",
"title": "Raster Extension",
"description": "STAC Raster Extension for STAC Items and STAC Collections.",
"type": "object",
Expand All @@ -9,7 +9,7 @@
"stac_extensions": {
"type": "array",
"contains": {
"const": "https://stac-extensions.github.io/raster/v2.0.0-beta.1/schema.json"
"const": "https://stac-extensions.github.io/raster/v2.0.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.0.0-beta.1",
"version": "2.0.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/raster/v2.0.0-beta.1/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/raster/v2.0.0-beta.1/schema.json=./json-schema/schema.json"
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/raster/v2.0.0/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/raster/v2.0.0/schema.json=./json-schema/schema.json"
},
"dependencies": {
"remark-cli": "^8.0.0",
Expand Down

0 comments on commit 5707e13

Please sign in to comment.