Skip to content

Commit ebd1675

Browse files
authored
Merge pull request #1075 from radiantearth/dev
Dev to master merge for changelog update
2 parents a01a839 + 9da66ed commit ebd1675

File tree

6 files changed

+7
-11
lines changed

6 files changed

+7
-11
lines changed

.circleci/config.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,8 @@ workflows:
4646
- test_examples
4747
- test_docs
4848
- publish_schemas:
49-
requires:
50-
- test_examples
5149
filters:
5250
tags:
53-
# All (future) tags
5451
only: /^v.*/
5552
branches:
56-
# Only dev branch, not PRs
57-
only: dev
53+
ignore: /^((?!dev).)*$/

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88

99
## [v1.0.0-rc.2] - 2021-03-30
1010

11-
### Added
12-
1311
### Changed
1412

1513
- Required properties of type `string` require a minimum length of `1`. ([#1065](https://github.com/radiantearth/stac-spec/pull/1065))
1614
- `gsd` must be greater than 0. ([#1068](https://github.com/radiantearth/stac-spec/pull/1068))
1715

1816
### Removed
1917

18+
- The remaining extensions in the spec (EO, Projection, Scientific Citation and View) have been moved out of the core specification, into their own repos in the [stac-extensions](https://github.com/stac-extensions/) GitHub organization. They must now be referred to by their schemas directly - the name shortcuts for them are no longer valid. The concept of the 'named shortcut' also goes away entirely. ([#1070](https://github.com/radiantearth/stac-spec/pull/1070))
19+
2020
### Fixed
2121

2222
- Collection Assets were specified as required (only in written text, not in JSON Schema), but that was incorrectly copied over from the former `collection-assets` extension. Collection Assets are not required.

catalog-spec/json-schema/catalog-core.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"stac_version": {
2323
"title": "STAC version",
2424
"type": "string",
25-
"const": "1.0.0-rc.1"
25+
"const": "1.0.0-rc.2"
2626
},
2727
"stac_extensions": {
2828
"title": "STAC extensions",

collection-spec/collection-spec.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Collection's license(s) as a SPDX [License identifier](https://spdx.org/licenses
8888

8989
#### summaries
9090

91-
Collections are are *strongly recommended* to provide summaries of the values of fields that they can expect from the `properties`
91+
Collections are *strongly recommended* to provide summaries of the values of fields that they can expect from the `properties`
9292
of STAC Items contained in this Collection. This enables users to get a good sense of what the ranges and potential values of
9393
different fields in the Collection are, without to inspect a number of Items (or crawl them exhaustively to get a definitive answer).
9494
Summaries help to fully define Collections, especially if they don't link to any Items. They also give clients enough information to

item-spec/json-schema/item.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
"stac_version": {
9494
"title": "STAC version",
9595
"type": "string",
96-
"const": "1.0.0-rc.1"
96+
"const": "1.0.0-rc.2"
9797
},
9898
"stac_extensions": {
9999
"title": "STAC extensions",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stac-spec",
3-
"version": "1.0.0-rc.1",
3+
"version": "1.0.0-rc.2",
44
"description": "STAC spec helpers to check the spec.",
55
"repository": "https://github.com/radiantearth/stac-spec",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)