Skip to content

Commit 13cddfd

Browse files
authored
Merge pull request #5 from stac-api-extensions/pv/release-1.0.0-rc.2
updates for release 1.0.0-rc.2
2 parents 6e6b5d4 + f61bdf6 commit 13cddfd

File tree

5 files changed

+25
-20
lines changed

5 files changed

+25
-20
lines changed

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77

8-
## [Unreleased] - TBD
8+
## [v1.0.0-rc.2] - TBD
99

1010
### Fixed
1111

@@ -206,6 +206,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
206206
See the [stac-spec CHANGELOG](https://github.com/radiantearth/stac-spec/blob/v0.9.0/CHANGELOG.md)
207207
for STAC API releases prior to or equal to version 0.9.0.
208208

209-
[Unreleased]: <https://github.com/radiantearth/stac-api-spec/compare/master...dev>
210-
[v1.0.0-beta.1]: <https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-beta.1>
209+
[Unreleased]: <https://github.com/stac-api-extensions/sort/compare/v1.0.0-rc.2..main>
210+
[v1.0.0-rc.2]: <https://github.com/stac-api-extensions/sort/tree/v1.0.0-rc.2>
211+
[v1.0.0-rc.1]: <https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.1>
212+
[v1.0.0-beta.5]: <https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-beta.5>
213+
[v1.0.0-beta.4]: <https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-beta.4>
214+
[v1.0.0-beta.3]: <https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-beta.3>
211215
[v1.0.0-beta.2]: <https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-beta.2>
216+
[v1.0.0-beta.1]: <https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-beta.1>

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
- **OpenAPI specification:** [openapi.yaml](openapi.yaml)
44
- **Conformance Classes:**
5-
- **STAC API - Item Search** binding: <https://api.stacspec.org/v1.0.0-rc.1/item-search#sort>
6-
- **STAC API - Features** binding: <https://api.stacspec.org/v1.0.0-rc.1/ogcapi-features#sort>
5+
- **STAC API - Item Search** binding: <https://api.stacspec.org/v1.0.0-rc.2/item-search#sort>
6+
- **STAC API - Features** binding: <https://api.stacspec.org/v1.0.0-rc.2/ogcapi-features#sort>
77
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-api-spec/blob/main/README.md#maturity-classification):** Candidate
88
- **Dependencies:**
9-
- [STAC API - Item Search](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.1/item-search)
10-
- [STAC API - Features](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.1/item-search)
9+
- [STAC API - Item Search](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.2/item-search)
10+
- [STAC API - Features](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.2/item-search)
1111

1212
This specification defines a new parameter, `sortby`, that allows the user to define the fields by which
1313
to sort results.
@@ -24,8 +24,8 @@ fields in Item Properties to be prefixed with `properties.` or not, or support u
2424
name, e.g., `properties.datetime` or `datetime`.
2525

2626
Sort behavior may be bound to either or both of
27-
[STAC API - Item Search](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.1/item-search) (`/search` endpoint) or
28-
[STAC API - Features](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.1/ogcapi-features)
27+
[STAC API - Item Search](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.2/item-search) (`/search` endpoint) or
28+
[STAC API - Features](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.2/ogcapi-features)
2929
(`/collections/{collectionId}/items` endpoint) by advertising the relevant conformance class.
3030

3131
Fields may be sorted in ascending or descending order. The syntax between GET requests and POST requests with a JSON

openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: 3.0.3
22
info:
33
title: The SpatioTemporal Asset Catalog API - Sort
44
description: Adds Parameter to control sorting of returns results.
5-
version: 1.0.0-rc.1
5+
version: 1.0.0-rc.2
66
contact:
77
name: STAC Specification
88
url: 'http://stacspec.org'

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stac-api-sort-extnsion-spec",
3-
"version": "1.0.0-rc.1",
3+
"version": "1.0.0-rc.2",
44
"description": "STAC API helpers to check the API spec.",
55
"repository": "https://github.com/stac-api-extensions/sort",
66
"license": "Apache-2.0",
@@ -85,4 +85,4 @@
8585
]
8686
]
8787
}
88-
}
88+
}

0 commit comments

Comments
 (0)