diff --git a/.circleci/config.yml b/.circleci/config.yml index ab390911..7095d1c8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -46,12 +46,8 @@ workflows: - test_examples - test_docs - publish_schemas: - requires: - - test_examples filters: tags: - # All (future) tags only: /^v.*/ branches: - # Only dev branch, not PRs - only: dev \ No newline at end of file + ignore: /^((?!dev).)*$/ \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 96e0ba97..9a8027a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,8 +8,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [v1.0.0-rc.2] - 2021-03-30 -### Added - ### Changed - Required properties of type `string` require a minimum length of `1`. ([#1065](https://github.com/radiantearth/stac-spec/pull/1065)) @@ -17,6 +15,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Removed +- 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)) + ### Fixed - 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. diff --git a/catalog-spec/json-schema/catalog-core.json b/catalog-spec/json-schema/catalog-core.json index fb75680f..503d7a66 100644 --- a/catalog-spec/json-schema/catalog-core.json +++ b/catalog-spec/json-schema/catalog-core.json @@ -22,7 +22,7 @@ "stac_version": { "title": "STAC version", "type": "string", - "const": "1.0.0-rc.1" + "const": "1.0.0-rc.2" }, "stac_extensions": { "title": "STAC extensions", diff --git a/collection-spec/collection-spec.md b/collection-spec/collection-spec.md index bd060dbd..f781bb91 100644 --- a/collection-spec/collection-spec.md +++ b/collection-spec/collection-spec.md @@ -88,7 +88,7 @@ Collection's license(s) as a SPDX [License identifier](https://spdx.org/licenses #### summaries -Collections are are *strongly recommended* to provide summaries of the values of fields that they can expect from the `properties` +Collections are *strongly recommended* to provide summaries of the values of fields that they can expect from the `properties` of STAC Items contained in this Collection. This enables users to get a good sense of what the ranges and potential values of different fields in the Collection are, without to inspect a number of Items (or crawl them exhaustively to get a definitive answer). Summaries help to fully define Collections, especially if they don't link to any Items. They also give clients enough information to diff --git a/item-spec/json-schema/item.json b/item-spec/json-schema/item.json index 013a1663..34d351f3 100644 --- a/item-spec/json-schema/item.json +++ b/item-spec/json-schema/item.json @@ -93,7 +93,7 @@ "stac_version": { "title": "STAC version", "type": "string", - "const": "1.0.0-rc.1" + "const": "1.0.0-rc.2" }, "stac_extensions": { "title": "STAC extensions", diff --git a/package.json b/package.json index 4e03739e..3fb2aeee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stac-spec", - "version": "1.0.0-rc.1", + "version": "1.0.0-rc.2", "description": "STAC spec helpers to check the spec.", "repository": "https://github.com/radiantearth/stac-spec", "license": "Apache-2.0",