Skip to content

Commit a40d8b9

Browse files
Merge pull request #5 from stac-extensions/release-2.0.0
Release 2.0.0
2 parents 182107e + 74e0231 commit a40d8b9

File tree

6 files changed

+13
-16
lines changed

6 files changed

+13
-16
lines changed

CHANGELOG.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
11
# Changelog
2+
23
All notable changes to this project will be documented in this file.
34

45
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
56
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
67

7-
## [Unreleased]
8-
9-
### Added
8+
## [v2.0.0]
109

1110
### Changed
1211

1312
- Summaries for values must be non-empty
1413

15-
### Deprecated
16-
1714
### Removed
1815

1916
- `file:bits_per_sample`: now in `raster:bands.bits_per_sample`
@@ -29,5 +26,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2926

3027
- Initial release
3128

32-
[Unreleased]: <https://github.com/stac-extensions/template/compare/v1.0.0...HEAD>
29+
[v2.0.0]: <https://github.com/stac-extensions/tree/v2.0.0>
3330
[v1.0.0]: <https://github.com/stac-extensions/tree/v1.0.0>

README.md

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

33
- **Title:** File Info
4-
- **Identifier:** <https://stac-extensions.github.io/file/v1.0.0/schema.json>
4+
- **Identifier:** <https://stac-extensions.github.io/file/v2.0.0/schema.json>
55
- **Field Name Prefix:** file
66
- **Scope:** Item, Collection
77
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Proposal

examples/collection.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"stac_version": "1.0.0-rc.4",
2+
"stac_version": "1.0.0",
33
"stac_extensions": [
4-
"https://stac-extensions.github.io/file/v1.0.0/schema.json"
4+
"https://stac-extensions.github.io/file/v2.0.0/schema.json"
55
],
66
"id": "example",
77
"type": "Collection",

examples/item.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"id": "S1A_EW_GRDM_1SSH_20181103T235855_20181103T235955_024430_02AD5D_5616",
33
"type": "Feature",
4-
"stac_version": "1.0.0-rc.4",
4+
"stac_version": "1.0.0",
55
"stac_extensions": [
6-
"https://stac-extensions.github.io/file/v1.0.0/schema.json"
6+
"https://stac-extensions.github.io/file/v2.0.0/schema.json"
77
],
88
"bbox": [
99
-70.275032,

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/file/v1.0.0/schema.json#",
3+
"$id": "https://stac-extensions.github.io/file/v2.0.0/schema.json#",
44
"title": "File Info Extension",
55
"description": "STAC File Info Extension for STAC Items and STAC Collections.",
66
"oneOf": [
@@ -72,7 +72,7 @@
7272
"stac_extensions": {
7373
"type": "array",
7474
"contains": {
75-
"const": "https://stac-extensions.github.io/file/v1.0.0/schema.json"
75+
"const": "https://stac-extensions.github.io/file/v2.0.0/schema.json"
7676
}
7777
}
7878
}

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": "2.0.0",
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/file/v1.0.0/schema.json=./json-schema/schema.json",
8-
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/file/v1.0.0/schema.json=./json-schema/schema.json"
7+
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/file/v2.0.0/schema.json=./json-schema/schema.json",
8+
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/file/v2.0.0/schema.json=./json-schema/schema.json"
99
},
1010
"dependencies": {
1111
"remark-cli": "^8.0.0",

0 commit comments

Comments
 (0)