Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed May 11, 2023
1 parent 80bcbd7 commit 67ef82e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 9 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

## [1.0.0] - 2023-05-11

- Final alignment with OGC API - Records, just minor changes to schema and documentation.

## [0.0.1] - 2023-04-25

- First release based on OGC API - Records

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

- **Title:** Themes
- **Identifier:** <https://stac-extensions.github.io/themes/v0.0.1/schema.json>
- **Identifier:** <https://stac-extensions.github.io/themes/v1.0.0/schema.json>
- **Field Name Prefix:** -
- **Scope:** Item, Catalog, Collection
- **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/collection.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/themes/v0.0.1/schema.json"
"https://stac-extensions.github.io/themes/v1.0.0/schema.json"
],
"type": "Collection",
"id": "collection",
Expand Down
2 changes: 1 addition & 1 deletion examples/item.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/themes/v0.0.1/schema.json"
"https://stac-extensions.github.io/themes/v1.0.0/schema.json"
],
"type": "Feature",
"id": "example",
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/themes/v0.0.1/schema.json#",
"$id": "https://stac-extensions.github.io/themes/v1.0.0/schema.json#",
"title": "Themes Extension",
"description": "STAC Themes Extension for STAC Catalogs, Collections and Items.",
"type": "object",
Expand All @@ -11,7 +11,7 @@
"stac_extensions": {
"type": "array",
"contains": {
"const": "https://stac-extensions.github.io/themes/v0.0.1/schema.json"
"const": "https://stac-extensions.github.io/themes/v1.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": "0.0.1",
"version": "1.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/themes/v0.0.1/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/themes/v0.0.1/schema.json=./json-schema/schema.json"
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/themes/v1.0.0/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/themes/v1.0.0/schema.json=./json-schema/schema.json"
},
"dependencies": {
"remark-cli": "^8.0.0",
Expand Down

0 comments on commit 67ef82e

Please sign in to comment.