Skip to content

Commit

Permalink
Release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Jan 5, 2023
1 parent 02da21e commit c41df8b
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 15 deletions.
15 changes: 11 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- All timestamps must be in UTC ([#1095](https://github.com/radiantearth/stac-spec/issues/1095))
- The extension can now be used mostly everywhere (e.g. Catalog, Collections, Items, Assets, Links), which aligns with STAC common metadata.

### Deprecated

### Removed

### Fixed

## [v1.1.0] - 2023-01-05

### Changed

- All timestamps must be in UTC ([#1095](https://github.com/radiantearth/stac-spec/issues/1095))
- The extension can now be used mostly everywhere (e.g. Catalog, Collections, Items, Assets, Links), which aligns with STAC common metadata.

### Fixed

- Clarified scope
- Clarified that no field is required, which is also not enforced in the schema
- JSON Schema checks `stac_extensions` field in Collections
Expand All @@ -29,5 +35,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- JSON Schema validates assets, item assets definitions and collection assets

[Unreleased]: <https://github.com/stac-extensions/timestamps/compare/v1.0.0...HEAD>
[Unreleased]: <https://github.com/stac-extensions/timestamps/compare/v1.1.0...HEAD>
[v1.1.0]: <https://github.com/stac-extensions/timestamps/compare/v1.0.0...v1.1.0>
[v1.0.0]: <https://github.com/stac-extensions/timestamps/tree/v1.0.0>
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Timestamps Extension Specification

- **Title:** Timestamps
- **Identifier:** <https://stac-extensions.github.io/timestamps/v1.0.0/schema.json>
- **Identifier:** <https://stac-extensions.github.io/timestamps/v1.1.0/schema.json>
- **Field Name Prefix:** -
- **Scope:** Item, Collection
- **Scope:** Item, Catalog, Collection
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Pilot
- **Owner**: @m-mohr
- **History**: [Prior to March 2, 2021](https://github.com/radiantearth/stac-spec/commits/v1.0.0-rc.1/extensions/timestamps)
Expand Down
2 changes: 1 addition & 1 deletion examples/catalog.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/timestamps/v1.0.0/schema.json"
"https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
],
"id": "landsat-8",
"type": "Catalog",
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/timestamps/v1.0.0/schema.json"
"https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
],
"id": "landsat-8",
"type": "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/timestamps/v1.0.0/schema.json"
"https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
],
"id": "LC08_L1TP_107018_20181001",
"type": "Feature",
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/timestamps/v1.0.0/schema.json#",
"$id": "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json#",
"title": "Timestamps Extension",
"description": "STAC Timestamps Extension to a STAC Item.",
"oneOf": [
Expand Down Expand Up @@ -102,7 +102,7 @@
"stac_extensions": {
"type": "array",
"contains": {
"const": "https://stac-extensions.github.io/timestamps/v1.0.0/schema.json"
"const": "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "stac-extensions",
"version": "1.0.0",
"name": "timestamps",
"version": "1.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/timestamps/v1.0.0/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/timestamps/v1.0.0/schema.json=./json-schema/schema.json"
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/timestamps/v1.1.0/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/timestamps/v1.1.0/schema.json=./json-schema/schema.json"
},
"dependencies": {
"remark-cli": "^8.0.0",
Expand Down

0 comments on commit c41df8b

Please sign in to comment.