Skip to content

Commit da219d6

Browse files
committed
Update versions numbers (v1.0.0-rc.1)
1 parent 15a2e3a commit da219d6

File tree

7 files changed

+19
-14
lines changed

7 files changed

+19
-14
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616

1717
### Fixed
1818

19-
[Unreleased]: <https://github.com/stac-extensions/osc/compare/v1.0.0...HEAD>
19+
## [1.0.0-rc.1]
20+
21+
- First release
22+
23+
[Unreleased]: <https://github.com/stac-extensions/osc/compare/v1.0.0-rc.1...HEAD>
24+
[1.0.0-rc.1]: <https://github.com/stac-extensions/osc/tree/v1.0.0-rc.1>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Open Science Catalog Extension Specification
22

33
- **Title:** Open Science Catalog
4-
- **Identifier:** <https://stac-extensions.github.io/osc/v1.0.0/schema.json>
4+
- **Identifier:** <https://stac-extensions.github.io/osc/v1.0.0-rc.1/schema.json>
55
- **Field Name Prefix:** osc
66
- **Scope:** Collection
77
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Proposal

examples/4dionosphere-swarm-vip/collection.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"stac_version": "1.0.0",
55
"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.",
66
"stac_extensions": [
7-
"https://stac-extensions.github.io/osc/v1.0.0/schema.json",
8-
"https://stac-extensions.github.io/themes/v0.0.1/schema.json",
9-
"https://stac-extensions.github.io/contacts/v0.0.1/schema.json"
7+
"https://stac-extensions.github.io/osc/v1.0.0-rc.1/schema.json",
8+
"https://stac-extensions.github.io/themes/v1.0.0/schema.json",
9+
"https://stac-extensions.github.io/contacts/v0.1.1/schema.json"
1010
],
1111
"title": "SWARM VIP",
1212
"osc:name": "4DIONOSPHERE (SWARM VIP)",

examples/4dionosphere-swarm-vip/model-ionosphere-4dionosphere/collection.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"id": "model-ionosphere-4dionosphere",
44
"stac_version": "1.0.0",
55
"stac_extensions": [
6-
"https://stac-extensions.github.io/osc/v1.0.0/schema.json",
7-
"https://stac-extensions.github.io/themes/v0.0.1/schema.json"
6+
"https://stac-extensions.github.io/osc/v1.0.0-rc.1/schema.json",
7+
"https://stac-extensions.github.io/themes/v1.0.0/schema.json"
88
],
99
"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).",
1010
"title": "Semi-empiric model of ionosphere processes_SWARM",

examples/4dionosphere-swarm-vip/model-ionosphere-4dionosphere/item.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"id": "example-model",
44
"stac_version": "1.0.0",
55
"stac_extensions": [
6-
"https://stac-extensions.github.io/osc/v1.0.0/schema.json",
7-
"https://stac-extensions.github.io/themes/v0.0.1/schema.json"
6+
"https://stac-extensions.github.io/osc/v1.0.0-rc.1/schema.json",
7+
"https://stac-extensions.github.io/themes/v1.0.0/schema.json"
88
],
99
"geometry": null,
1010
"properties": {

json-schema/schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://stac-extensions.github.io/osc/v1.0.0/schema.json#",
3+
"$id": "https://stac-extensions.github.io/osc/v1.0.0-rc.1/schema.json#",
44
"title": "Open Science Catalog Extension",
55
"description": "STAC Open Science Catalog Extension for STAC Items and STAC Collections.",
66
"type": "object",
@@ -11,7 +11,7 @@
1111
"stac_extensions": {
1212
"type": "array",
1313
"contains": {
14-
"const": "https://stac-extensions.github.io/osc/v1.0.0/schema.json"
14+
"const": "https://stac-extensions.github.io/osc/v1.0.0-rc.1/schema.json"
1515
}
1616
}
1717
},

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "stac-extensions",
3-
"version": "1.0.0",
3+
"version": "1.0.0-rc.1",
44
"scripts": {
55
"test": "npm run check-markdown && npm run check-examples",
66
"check-markdown": "remark . -f -r .github/remark.yaml",
7-
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/osc/v1.0.0/schema.json=./json-schema/schema.json",
8-
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/osc/v1.0.0/schema.json=./json-schema/schema.json"
7+
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/osc/v1.0.0-rc.1/schema.json=./json-schema/schema.json",
8+
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/osc/v1.0.0-rc.1/schema.json=./json-schema/schema.json"
99
},
1010
"dependencies": {
1111
"remark-cli": "^8.0.0",

0 commit comments

Comments
 (0)