Skip to content

Commit

Permalink
Merge pull request #1119 from radiantearth/version-rc4
Browse files Browse the repository at this point in the history
updated version numbers / changelog
  • Loading branch information
m-mohr authored May 11, 2021
2 parents a553f11 + 21e12d5 commit 09f0019
Show file tree
Hide file tree
Showing 20 changed files with 35 additions and 27 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,23 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [v1.0.0-rc.4] - 2021-05-11

### Changed

- An empty Catalog is now allowed, removed the requirement that it must have a child or item link. ([#1115](https://github.com/radiantearth/stac-spec/issues/1115))
- An open date range to both sides is now allowed in the Collection's temporal extents. ([#1125](https://github.com/radiantearth/stac-spec/issues/1125))
- Catalog and Collection JSON Schemas don't have a common JSON Schema any more
- Catalog and Collection JSON Schemas don't have a common JSON Schema any more ([#1122](https://github.com/radiantearth/stac-spec/pull/1122))

### Removed

- Catalogs don't support summaries any more
- Catalogs don't support summaries any more ([#1122](https://github.com/radiantearth/stac-spec/pull/1122))

### Fixed

- Added clarification around when an extension should be included in `stac_extensions` ([#1123](https://github.com/radiantearth/stac-spec/pull/1123))
- JSON Schemas don't allow "shortcuts" for core extensions any longer ([#1121](https://github.com/radiantearth/stac-spec/pull/1121))
- Fixed examples

## [v1.0.0-rc.3] - 2021-04-29

Expand All @@ -25,7 +33,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Added `preview` relation type for interoperable thumbnails to best practices. ([#1090](https://github.com/radiantearth/stac-spec/issues/1090))
- Recommendation to include both `root` and `parent` relation types when they point at the same file. ([#1098](https://github.com/radiantearth/stac-spec/issues/1098))
- Overview section linking to various foundational standards. ([#1111](https://github.com/radiantearth/stac-spec/pull/1111))
- Added clarification around when an extension should be included in `stac_extensions` ([#1123](https://github.com/radiantearth/stac-spec/pull/1123))

### Changed

Expand Down Expand Up @@ -438,6 +445,7 @@ See the [milestone 0.4.0 in the issue tracker](https://github.com/radiantearth/s
Thanks @hgs-msmith, @matthewhanson, @hgs-trutherford, @rouault, @joshfix, @alkamin, @hemphillda, @jeffnaus and @fredliporace for contributing to the spec directly, and to [everyone](https://github.com/opengeospatial/wfs3hackathon/blob/master/notes/introductions.md#participants) who participated in the [Ft Collins sprint](https://github.com/radiantearth/community-sprints/tree/master/03072018-ft-collins-co) and brought great ideas.

[Unreleased]: <https://github.com/radiantearth/stac-spec/compare/master...dev>
[v1.0.0-rc.4]: <https://github.com/radiantearth/stac-spec/compare/v1.0.0-rc.3..v1.0.0-rc.4>
[v1.0.0-rc.3]: <https://github.com/radiantearth/stac-spec/compare/v1.0.0-rc.2..v1.0.0-rc.3>
[v1.0.0-rc.2]: <https://github.com/radiantearth/stac-spec/compare/v1.0.0-rc.1..v1.0.0-rc.2>
[v1.0.0-rc.1]: <https://github.com/radiantearth/stac-spec/compare/v1.0.0-beta.2..v1.0.0-rc.1>
Expand Down
4 changes: 2 additions & 2 deletions catalog-spec/json-schema/catalog.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://schemas.stacspec.org/v1.0.0-rc.3/catalog-spec/json-schema/catalog.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.4/catalog-spec/json-schema/catalog.json#",
"title": "STAC Catalog Specification",
"description": "This object represents Catalogs in a SpatioTemporal Asset Catalog.",
"allOf": [
Expand All @@ -23,7 +23,7 @@
"stac_version": {
"title": "STAC version",
"type": "string",
"const": "1.0.0-rc.3"
"const": "1.0.0-rc.4"
},
"stac_extensions": {
"title": "STAC extensions",
Expand Down
4 changes: 2 additions & 2 deletions collection-spec/json-schema/collection.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://schemas.stacspec.org/v1.0.0-rc.3/collection-spec/json-schema/collection.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.4/collection-spec/json-schema/collection.json#",
"title": "STAC Collection Specification",
"description": "This object represents Collections in a SpatioTemporal Asset Catalog.",
"allOf": [
Expand All @@ -26,7 +26,7 @@
"stac_version": {
"title": "STAC version",
"type": "string",
"const": "1.0.0-rc.3"
"const": "1.0.0-rc.4"
},
"stac_extensions": {
"title": "STAC extensions",
Expand Down
4 changes: 2 additions & 2 deletions examples/catalog.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "examples",
"type": "Catalog",
"stac_version": "1.0.0-rc.3",
"stac_version": "1.0.0-rc.4",
"description": "This catalog is a simple demonstration of an example catalog that is used to organize a hierarchy of collections and their items.",
"links": [
{
Expand Down Expand Up @@ -35,7 +35,7 @@
},
{
"rel": "self",
"href": "https://raw.githubusercontent.com/radiantearth/stac-spec/v1.0.0-rc.3/examples/catalog.json",
"href": "https://raw.githubusercontent.com/radiantearth/stac-spec/v1.0.0-rc.4/examples/catalog.json",
"type": "application/json"
}
]
Expand Down
2 changes: 1 addition & 1 deletion examples/collection-only/collection-with-schemas.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-rc.3",
"stac_version": "1.0.0-rc.4",
"stac_extensions": [
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
"https://stac-extensions.github.io/sat/v1.0.0/schema.json",
Expand Down
2 changes: 1 addition & 1 deletion examples/collection-only/collection.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "Collection",
"stac_version": "1.0.0-rc.3",
"stac_version": "1.0.0-rc.4",
"stac_extensions": [
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
"https://stac-extensions.github.io/projection/v1.0.0/schema.json",
Expand Down
4 changes: 2 additions & 2 deletions examples/collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"https://stac-extensions.github.io/projection/v1.0.0/schema.json",
"https://stac-extensions.github.io/view/v1.0.0/schema.json"
],
"stac_version": "1.0.0-rc.3",
"stac_version": "1.0.0-rc.4",
"description": "A simple collection demonstrating core catalog fields with links to a couple of items",
"title": "Simple Example Collection",
"providers": [
Expand Down Expand Up @@ -104,7 +104,7 @@
},
{
"rel": "self",
"href": "https://raw.githubusercontent.com/radiantearth/stac-spec/v1.0.0-rc.3/examples/collection.json",
"href": "https://raw.githubusercontent.com/radiantearth/stac-spec/v1.0.0-rc.4/examples/collection.json",
"type": "application/json"
}
]
Expand Down
2 changes: 1 addition & 1 deletion examples/collectionless-item.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-rc.3",
"stac_version": "1.0.0-rc.4",
"stac_extensions": [
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
"https://stac-extensions.github.io/view/v1.0.0/schema.json"
Expand Down
2 changes: 1 addition & 1 deletion examples/core-item.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-rc.3",
"stac_version": "1.0.0-rc.4",
"stac_extensions": [],
"type": "Feature",
"id": "20201211_223832_CS2",
Expand Down
2 changes: 1 addition & 1 deletion examples/extended-item.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-rc.3",
"stac_version": "1.0.0-rc.4",
"stac_extensions": [
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
"https://stac-extensions.github.io/projection/v1.0.0/schema.json",
Expand Down
2 changes: 1 addition & 1 deletion examples/extensions-collection/collection.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "extensions-collection",
"type": "Collection",
"stac_version": "1.0.0-rc.3",
"stac_version": "1.0.0-rc.4",
"description": "A heterogenous collection containing deeper examples of various extensions",
"links": [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "Feature",
"stac_version": "1.0.0-rc.3",
"stac_version": "1.0.0-rc.4",
"id": "proj-example",
"properties": {
"datetime": "2018-10-01T01:08:32.033000Z",
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-item.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-rc.3",
"stac_version": "1.0.0-rc.4",
"stac_extensions": [],
"type": "Feature",
"id": "20201211_223832_CS2",
Expand Down
2 changes: 1 addition & 1 deletion item-spec/json-schema/basics.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://schemas.stacspec.org/v1.0.0-rc.3/item-spec/json-schema/basics.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.4/item-spec/json-schema/basics.json#",
"title": "Basic Descriptive Fields",
"type": "object",
"properties": {
Expand Down
2 changes: 1 addition & 1 deletion item-spec/json-schema/datetime.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://schemas.stacspec.org/v1.0.0-rc.3/item-spec/json-schema/datetime.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.4/item-spec/json-schema/datetime.json#",
"title": "Date and Time Fields",
"type": "object",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion item-spec/json-schema/instrument.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://schemas.stacspec.org/v1.0.0-rc.3/item-spec/json-schema/instrument.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.4/item-spec/json-schema/instrument.json#",
"title": "Instrument Fields",
"type": "object",
"properties": {
Expand Down
4 changes: 2 additions & 2 deletions item-spec/json-schema/item.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://schemas.stacspec.org/v1.0.0-rc.3/item-spec/json-schema/item.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.4/item-spec/json-schema/item.json#",
"title": "STAC Item",
"type": "object",
"description": "This object represents the metadata for an item in a SpatioTemporal Asset Catalog.",
Expand Down Expand Up @@ -93,7 +93,7 @@
"stac_version": {
"title": "STAC version",
"type": "string",
"const": "1.0.0-rc.3"
"const": "1.0.0-rc.4"
},
"stac_extensions": {
"title": "STAC extensions",
Expand Down
2 changes: 1 addition & 1 deletion item-spec/json-schema/licensing.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://schemas.stacspec.org/v1.0.0-rc.3/item-spec/json-schema/licensing.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.4/item-spec/json-schema/licensing.json#",
"title": "Licensing Fields",
"type": "object",
"properties": {
Expand Down
2 changes: 1 addition & 1 deletion item-spec/json-schema/provider.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://schemas.stacspec.org/v1.0.0-rc.3/item-spec/json-schema/provider.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.4/item-spec/json-schema/provider.json#",
"title": "Provider Fields",
"type": "object",
"properties": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stac-spec",
"version": "1.0.0-rc.3",
"version": "1.0.0-rc.4",
"description": "STAC spec helpers to check the spec.",
"repository": "https://github.com/radiantearth/stac-spec",
"license": "Apache-2.0",
Expand Down

0 comments on commit 09f0019

Please sign in to comment.