diff --git a/CHANGELOG.md b/CHANGELOG.md index f1eb4c3..9918258 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -29,6 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First release -[Unreleased]: +[Unreleased]: +[1.0.0-rc.3]: [1.0.0-rc.2]: [1.0.0-rc.1]: diff --git a/README.md b/README.md index 18c9295..0ac7a95 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Open Science Catalog Extension Specification - **Title:** Open Science Catalog -- **Identifier:** +- **Identifier:** - **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 diff --git a/examples/4dionosphere-swarm-vip/catalog.json b/examples/4dionosphere-swarm-vip/catalog.json index e60246a..6f99fe0 100644 --- a/examples/4dionosphere-swarm-vip/catalog.json +++ b/examples/4dionosphere-swarm-vip/catalog.json @@ -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", diff --git a/examples/4dionosphere-swarm-vip/model-ionosphere-4dionosphere/collection.json b/examples/4dionosphere-swarm-vip/model-ionosphere-4dionosphere/collection.json index 514c1ac..6a989f5 100644 --- a/examples/4dionosphere-swarm-vip/model-ionosphere-4dionosphere/collection.json +++ b/examples/4dionosphere-swarm-vip/model-ionosphere-4dionosphere/collection.json @@ -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", diff --git a/examples/4dionosphere-swarm-vip/model-ionosphere-4dionosphere/item.json b/examples/4dionosphere-swarm-vip/model-ionosphere-4dionosphere/item.json index fd1348a..97ac77b 100644 --- a/examples/4dionosphere-swarm-vip/model-ionosphere-4dionosphere/item.json +++ b/examples/4dionosphere-swarm-vip/model-ionosphere-4dionosphere/item.json @@ -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": { diff --git a/json-schema/schema.json b/json-schema/schema.json index 9b58f16..fbf9529 100644 --- a/json-schema/schema.json +++ b/json-schema/schema.json @@ -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", @@ -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" } } }, diff --git a/package.json b/package.json index 6ee60c9..bbcc715 100644 --- a/package.json +++ b/package.json @@ -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",