Skip to content

Commit

Permalink
0.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Mar 25, 2024
1 parent 5e7a799 commit 624600c
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
The format is based on [Keep a Changelog](https://keepachangelog.com/en/0.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

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

### Fixed

## [1.0.0]
## [0.1.0]

### Added

- Create an initial definition of the extension.

[Unreleased]: <https://github.com/stac-extensions/sentinel-1/compare/v1.0.0...HEAD>
[1.0.0]: <https://github.com/stac-extensions/sentinel-1/tags/v1.0.0>
[Unreleased]: <https://github.com/stac-extensions/sentinel-1/compare/v0.1.0...HEAD>
[0.1.0]: <https://github.com/stac-extensions/sentinel-1/tags/v0.1.0>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Sentinel-1 Extension Specification

- **Title:** Sentinel-1
- **Identifier:** <https://stac-extensions.github.io/sentinel-1/v1.0.0/schema.json>
- **Identifier:** <https://stac-extensions.github.io/sentinel-1/v0.1.0/schema.json>
- **Field Name Prefix:** s1
- **Scope:** Item
- **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/earthsearch-s1-grd.json
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@
"https://stac-extensions.github.io/processing/v1.1.0/schema.json",
"https://stac-extensions.github.io/sat/v1.0.0/schema.json",
"https://stac-extensions.github.io/raster/v1.1.0/schema.json",
"https://stac-extensions.github.io/sentinel-1/v1.0.0/schema.json"
"https://stac-extensions.github.io/sentinel-1/v0.1.0/schema.json"
],
"collection": "sentinel-1-grd"
}
2 changes: 1 addition & 1 deletion examples/mspc-s1-grd.json
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@
"stac_extensions": [
"https://stac-extensions.github.io/sar/v1.0.0/schema.json",
"https://stac-extensions.github.io/sat/v1.0.0/schema.json",
"https://stac-extensions.github.io/sentinel-1/v1.0.0/schema.json"
"https://stac-extensions.github.io/sentinel-1/v0.1.0/schema.json"
],
"stac_version": "1.0.0"
}
2 changes: 1 addition & 1 deletion examples/mspc-s1-rtc.json
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
"https://stac-extensions.github.io/projection/v1.1.0/schema.json",
"https://stac-extensions.github.io/file/v2.0.0/schema.json",
"https://stac-extensions.github.io/raster/v1.1.0/schema.json",
"https://stac-extensions.github.io/sentinel-1/v1.0.0/schema.json"
"https://stac-extensions.github.io/sentinel-1/v0.1.0/schema.json"
],
"stac_version": "1.0.0"
}
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/sentinel-1/v1.0.0/schema.json#",
"$id": "https://stac-extensions.github.io/sentinel-1/v0.1.0/schema.json#",
"title": "Sentinel-1 Extension",
"description": "STAC Sentinel-1 Extension for STAC Items and STAC Collection Summaries.",
"type": "object",
Expand All @@ -11,7 +11,7 @@
"stac_extensions": {
"type": "array",
"contains": {
"const": "https://stac-extensions.github.io/sentinel-1/v1.0.0/schema.json"
"const": "https://stac-extensions.github.io/sentinel-1/v0.1.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-extension-sentinel-1",
"version": "1.0.0",
"version": "0.1.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/sentinel-1/v1.0.0/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/sentinel-1/v1.0.0/schema.json=./json-schema/schema.json"
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/sentinel-1/v0.1.0/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/sentinel-1/v0.1.0/schema.json=./json-schema/schema.json"
},
"dependencies": {
"remark-cli": "^12.0.0",
Expand Down

0 comments on commit 624600c

Please sign in to comment.