Skip to content

Commit b22f116

Browse files
m-mohrjlaura
authored andcommitted
Updated version number to v1.1.0 for the next release (#17)
1 parent 870c6ce commit b22f116

File tree

7 files changed

+12
-13
lines changed

7 files changed

+12
-13
lines changed

CHANGELOG.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [v1.1.0] - 2023-02-08
10+
911
### Added
1012

1113
- Added examples for Collections and Assets (in Items)
@@ -15,10 +17,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1517
- `proj:epsg` is not required in Item properties anymore. `proj:epsg` is recommended now, but not required in any scope.
1618
- Updated the PROJJSON schema to v0.5
1719

18-
### Deprecated
19-
20-
### Removed
21-
2220
### Fixed
2321

2422
- Added missing scope "Collection" to Readme. The scope was already supported in JSON Schemas.
@@ -31,4 +29,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3129
Initial independent release, see [previous history](https://github.com/radiantearth/stac-spec/commits/v1.0.0-rc.2/extensions/projection)
3230

3331
[Unreleased]: <https://github.com/stac-extensions/projection/compare/v1.0.0...HEAD>
32+
[v1.1.0]: <https://github.com/stac-extensions/projection/compare/v1.0.0...v1.1.0>
3433
[v1.0.0]: <https://github.com/stac-extensions/projection/tree/v1.0.0>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Projection Extension Specification
22

33
- **Title:** Projection
4-
- **Identifier:** <https://stac-extensions.github.io/projection/v1.0.0/schema.json>
4+
- **Identifier:** <https://stac-extensions.github.io/projection/v1.1.0/schema.json>
55
- **Field Name Prefix:** proj
66
- **Scope:** Item, Collection
77
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/README.md#extension-maturity):** Stable

examples/assets.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"stac_version": "1.0.0",
33
"stac_extensions": [
4-
"https://stac-extensions.github.io/projection/v1.0.0/schema.json"
4+
"https://stac-extensions.github.io/projection/v1.1.0/schema.json"
55
],
66
"type": "Feature",
77
"id": "20201211_223832_CS2_A",

examples/collection.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"stac_version": "1.0.0",
33
"stac_extensions": [
4-
"https://stac-extensions.github.io/projection/v1.0.0/schema.json",
4+
"https://stac-extensions.github.io/projection/v1.1.0/schema.json",
55
"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json"
66
],
77
"type": "Collection",

examples/item.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"stac_version": "1.0.0",
33
"stac_extensions": [
4-
"https://stac-extensions.github.io/projection/v1.0.0/schema.json"
4+
"https://stac-extensions.github.io/projection/v1.1.0/schema.json"
55
],
66
"type": "Feature",
77
"id": "20201211_223832_CS2",

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://stac-extensions.github.io/projection/v2.0.0/schema.json",
3+
"$id": "https://stac-extensions.github.io/projection/v1.1.0/schema.json",
44
"title": "Projection Extension",
55
"description": "STAC Projection Extension for STAC Items.",
66
"$comment": "This schema succeeds if the proj: fields are not used at all, please keep this in mind.",
@@ -77,7 +77,7 @@
7777
"stac_extensions": {
7878
"type": "array",
7979
"contains": {
80-
"const": "https://stac-extensions.github.io/projection/v1.0.0/schema.json"
80+
"const": "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
8181
}
8282
}
8383
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "stac-extensions",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"scripts": {
55
"test": "npm run check-markdown && npm run check-examples",
66
"check-markdown": "remark . -f -r .github/remark.yaml",
7-
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/projection/v1.0.0/schema.json=./json-schema/schema.json",
8-
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/projection/v1.0.0/schema.json=./json-schema/schema.json"
7+
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/projection/v1.1.0/schema.json=./json-schema/schema.json",
8+
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/projection/v1.1.0/schema.json=./json-schema/schema.json"
99
},
1010
"dependencies": {
1111
"remark-cli": "^8.0.0",

0 commit comments

Comments
 (0)