Skip to content

Commit

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

### Fixed

## [1.0.0-rc.3]

### Added

- Added `planned` to allowed values for `osc:status`

## [1.0.0-rc.2]

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

- First release

[Unreleased]: <https://github.com/stac-extensions/osc/compare/v1.0.0-rc.2...HEAD>
[Unreleased]: <https://github.com/stac-extensions/osc/compare/v1.0.0-rc.3...HEAD>
[1.0.0-rc.3]: <https://github.com/stac-extensions/osc/compare/v1.0.0-rc.2...v1.0.0-rc.3>
[1.0.0-rc.2]: <https://github.com/stac-extensions/osc/compare/v1.0.0-rc.1...v1.0.0-rc.2>
[1.0.0-rc.1]: <https://github.com/stac-extensions/osc/tree/v1.0.0-rc.1>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Open Science Catalog Extension Specification

- **Title:** Open Science Catalog
- **Identifier:** <https://stac-extensions.github.io/osc/v1.0.0-rc.2/schema.json>
- **Identifier:** <https://stac-extensions.github.io/osc/v1.0.0-rc.3/schema.json>
- **Field Name Prefix:** osc
- **Scope:** Catalog, Collection, 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/4dionosphere-swarm-vip/catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"stac_version": "1.0.0",
"description": "In the project Swarm satellite data and other datasets are used to determine determine the dominant scales in the ionosphere at different geomagnetic conditions and create a semi-empiric dynamic model of the ionosphere.",
"stac_extensions": [
"https://stac-extensions.github.io/osc/v1.0.0-rc.2/schema.json",
"https://stac-extensions.github.io/osc/v1.0.0-rc.3/schema.json",
"https://stac-extensions.github.io/contacts/v0.1.1/schema.json"
],
"title": "SWARM VIP",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"id": "model-ionosphere-4dionosphere",
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/osc/v1.0.0-rc.2/schema.json"
"https://stac-extensions.github.io/osc/v1.0.0-rc.3/schema.json"
],
"description": "Semi-empiric model and improvement of the forecasting capabilities for extreme space weather events. Swarm-VIP project performs extensive and complex statistical analysis on Swarm electron density, electric and magnetic field data focusing on: 1) the ionospheric climate/weather during quiet geomagnetic conditions; 2) the extreme events such as geomagnetic storms / superstorms and 3) the physics of ionospheric perturbations and small-scale variability. Currently the access to the results is restricted. If you would like to gain access, please contact Lasse Clausen (http://www.mn.uio.no/fysikk/english/people/aca/lbnc/) or Wojciech Miloch (http://www.mn.uio.no/fysikk/english/people/aca/wojciecm/index.html).",
"title": "Semi-empiric model of ionosphere processes_SWARM",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"id": "example",
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/osc/v1.0.0-rc.2/schema.json"
"https://stac-extensions.github.io/osc/v1.0.0-rc.3/schema.json"
],
"geometry": null,
"properties": {
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/osc/v1.0.0-rc.2/schema.json#",
"$id": "https://stac-extensions.github.io/osc/v1.0.0-rc.3/schema.json#",
"title": "Open Science Catalog Extension",
"description": "STAC Open Science Catalog Extension for STAC Items and STAC Collections.",
"type": "object",
Expand All @@ -11,7 +11,7 @@
"stac_extensions": {
"type": "array",
"contains": {
"const": "https://stac-extensions.github.io/osc/v1.0.0-rc.2/schema.json"
"const": "https://stac-extensions.github.io/osc/v1.0.0-rc.3/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": "1.0.0-rc.2",
"version": "1.0.0-rc.3",
"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/osc/v1.0.0-rc.2/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/osc/v1.0.0-rc.2/schema.json=./json-schema/schema.json"
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/osc/v1.0.0-rc.3/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/osc/v1.0.0-rc.3/schema.json=./json-schema/schema.json"
},
"dependencies": {
"remark-cli": "^8.0.0",
Expand Down

0 comments on commit 5b8bd0b

Please sign in to comment.