Skip to content

Commit 5b556f8

Browse files
authored
Merge pull request #867 from radiantearth/1.0.0-beta-2-update
1.0.0-beta.2 version + changelog update
2 parents 9429229 + 7f029ac commit 5b556f8

File tree

71 files changed

+104
-92
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+104
-92
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
### Added
10+
11+
### Changed
12+
13+
### Removed
14+
15+
### Fixed
16+
17+
18+
## [v1.0.0-beta.2] - 2020-07-08
19+
920
### Added
1021
- JSON-schema file in the Point Cloud extension.
1122

12-
### Changes
23+
### Changed
1324
- Clarification on null geometries, making bbox not required if a null geometry is used.
1425
- Multiple extents (bounding boxes / intervals) are allowed per Collection
1526

@@ -347,6 +358,7 @@ Thanks @hgs-msmith, @matthewhanson, @hgs-trutherford, @rouault, @joshfix, @alkam
347358

348359

349360
[Unreleased]: <https://github.com/radiantearth/stac-spec/compare/master...dev>
361+
[v1.0.0-beta.2]: <https://github.com/radiantearth/stac-spec/compare/v1.0.0-beta.1..v1.0.0-beta.2>
350362
[v1.0.0-beta.1]: <https://github.com/radiantearth/stac-spec/compare/v0.9.0...v1.0.0-beta.1>
351363
[v0.9.0]: <https://github.com/radiantearth/stac-spec/compare/v0.8.1...v0.9.0>
352364
[v0.8.1]: <https://github.com/radiantearth/stac-spec/compare/v0.8.0...v0.8.1>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ change will require the spec to go to 2.0.0.
2929
## Current version and branches
3030

3131
The [master branch](https://github.com/radiantearth/stac-spec/tree/master) is the 'stable' version of the spec. It is currently version
32-
**1.0.0-beta.1** of the specification. The
32+
**1.0.0-beta.2** of the specification. The
3333
[dev](https://github.com/radiantearth/stac-spec/tree/dev) branch is where active development takes place, and may have inconsistent examples.
3434
Whenever dev stabilizes a release is cut and we merge dev in to master. So master should be stable at any given time.
3535
It is possible that there may be small releases in quick succession, especially if they are nice improvements that do

catalog-spec/examples/catalog-items.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"stac_version": "1.0.0-beta.1",
2+
"stac_version": "1.0.0-beta.2",
33
"id": "hurricane-harvey-0831",
44
"title": "Hurricane Harvey 08-31-2017",
55
"description": "Planet Scenes and Composites for Hurricane Harvey on Aug 31, 2017",

catalog-spec/examples/catalog.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"stac_version": "1.0.0-beta.1",
2+
"stac_version": "1.0.0-beta.2",
33
"id": "NAIP",
44
"description": "Catalog of NAIP Imagery",
55
"links": [

catalog-spec/json-schema/catalog.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://schemas.stacspec.org/dev/catalog-spec/json-schema/catalog.json#",
3+
"$id": "https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json#",
44
"title": "STAC Catalog Specification",
55
"description": "This object represents Catalogs in a SpatioTemporal Asset Catalog.",
66
"allOf": [
@@ -22,7 +22,7 @@
2222
"stac_version": {
2323
"title": "STAC version",
2424
"type": "string",
25-
"const": "1.0.0-beta.1"
25+
"const": "1.0.0-beta.2"
2626
},
2727
"stac_extensions": {
2828
"title": "STAC extensions",

collection-spec/examples/landsat-collection.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"stac_version": "1.0.0-beta.1",
2+
"stac_version": "1.0.0-beta.2",
33
"stac_extensions": [],
44
"id": "landsat-8-l1",
55
"title": "Landsat 8 L1",

collection-spec/examples/sentinel2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"stac_version": "1.0.0-beta.1",
2+
"stac_version": "1.0.0-beta.2",
33
"stac_extensions": [],
44
"id": "COPERNICUS/S2",
55
"title": "Sentinel-2 MSI: MultiSpectral Instrument, Level-1C",

collection-spec/json-schema/collection.json

Lines changed: 1 addition & 1 deletion
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://schemas.stacspec.org/dev/collection-spec/json-schema/collection.json#",
3+
"$id": "https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json#",
44
"title": "STAC Collection Specification",
55
"description": "This object represents Collections in a SpatioTemporal Asset Catalog.",
66
"allOf": [

extensions/checksum/examples/sentinel1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "S1A_EW_GRDM_1SSH_20181103T235855_20181103T235955_024430_02AD5D_5616",
33
"type": "Feature",
4-
"stac_version": "1.0.0-beta.1",
4+
"stac_version": "1.0.0-beta.2",
55
"stac_extensions": [
66
"checksum"
77
],

extensions/checksum/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://schemas.stacspec.org/dev/extensions/checksum/json-schema/schema.json#",
3+
"$id": "https://schemas.stacspec.org/v1.0.0-beta.2/extensions/checksum/json-schema/schema.json#",
44
"title": "Checksum Extension Specification",
55
"description": "STAC Checksum Extension to a STAC Item",
66
"oneOf": [
@@ -62,7 +62,7 @@
6262
"contains": {
6363
"enum": [
6464
"checksum",
65-
"https://schemas.stacspec.org/dev/extensions/checksum/json-schema/schema.json"
65+
"https://schemas.stacspec.org/v1.0.0-beta.2/extensions/checksum/json-schema/schema.json"
6666
]
6767
}
6868
}

0 commit comments

Comments
 (0)