Skip to content

Commit 47d22a4

Browse files
committed
Bump version: 1.4.0 → 1.5.0
1 parent 721d292 commit 47d22a4

19 files changed

Lines changed: 44 additions & 22 deletions

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12+
- n/a
13+
14+
### Changed
15+
16+
- n/a
17+
18+
### Deprecated
19+
20+
- n/a
21+
22+
### Removed
23+
24+
- n/a
25+
26+
### Fixed
27+
28+
- n/a
29+
30+
## [v1.5.0](https://github.com/stac-extensions/mlm/tree/v1.5.0)
31+
32+
### Added
33+
1234
- Add explicit JSON schema validation checks for `bands` and `variables` definitions against corresponding `"bands"`
1335
and `"variables"` dimensions indicated in `dim_order` to ensure they are coherent. Because of this validation, the
1436
`"bands"` and `"variables"` dimension names are now considered reserved for this purpose and cannot be employed as

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ references:
9090
authors: *authors
9191
identifiers:
9292
- type: url
93-
value: "https://stac-extensions.github.io/mlm/v1.4.0/schema.json"
93+
value: "https://stac-extensions.github.io/mlm/v1.5.0/schema.json"
9494
description: "Latest extension URL used in 'stac_extensions' references."
9595
- type: url
9696
value: "https://stac-extensions.github.io/mlm/"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![hackmd-github-sync-badge](https://hackmd.io/XveEXOukQ52ZdpUxT8maeA/badge)](https://hackmd.io/XveEXOukQ52ZdpUxT8maeA?both)
44

55
- **Title:** Machine Learning Model Extension
6-
- **Identifier:** <https://stac-extensions.github.io/mlm/v1.4.0/schema.json>
6+
- **Identifier:** <https://stac-extensions.github.io/mlm/v1.5.0/schema.json>
77
- **Field Name Prefix:** mlm
88
- **Scope:** Collection, Item, Asset, Links
99
- **Extension Maturity Classification:** Candidate

best-practices.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ leading to a new MLM STAC Item definition (see also [STAC Version Extension](#ve
176176
{
177177
"id": "stac-item-model",
178178
"stac_extensions": [
179-
"https://stac-extensions.github.io/mlm/v1.4.0/schema.json",
179+
"https://stac-extensions.github.io/mlm/v1.5.0/schema.json",
180180
"https://stac-extensions.github.io/ml-aoi/v0.2.0/schema.json"
181181
],
182182
"assets": {
@@ -251,7 +251,7 @@ that the model is properly instantiated from the expected weights, or that suffi
251251
```json
252252
{
253253
"stac_extensions": [
254-
"https://stac-extensions.github.io/mlm/v1.4.0/schema.json",
254+
"https://stac-extensions.github.io/mlm/v1.5.0/schema.json",
255255
"https://stac-extensions.github.io/file/v2.1.0/schema.json"
256256
],
257257
"assets": {

examples/item_bands_expression.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$comment": "Demonstrate the use of MLM and EO for bands description, with EO bands directly in the Model Asset.",
33
"stac_version": "1.0.0",
44
"stac_extensions": [
5-
"https://stac-extensions.github.io/mlm/v1.4.0/schema.json",
5+
"https://stac-extensions.github.io/mlm/v1.5.0/schema.json",
66
"https://stac-extensions.github.io/eo/v1.1.0/schema.json",
77
"https://stac-extensions.github.io/raster/v1.1.0/schema.json",
88
"https://stac-extensions.github.io/file/v1.0.0/schema.json",

examples/item_basic.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/mlm/v1.4.0/schema.json"
4+
"https://stac-extensions.github.io/mlm/v1.5.0/schema.json"
55
],
66
"type": "Feature",
77
"id": "example-model",

examples/item_datacube_variables.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$comment": "Demonstrate the use of MLM and DataCube variables description.",
33
"stac_version": "1.0.0",
44
"stac_extensions": [
5-
"https://stac-extensions.github.io/mlm/v1.4.0/schema.json",
5+
"https://stac-extensions.github.io/mlm/v1.5.0/schema.json",
66
"https://stac-extensions.github.io/datacube/v2.3.0/schema.json",
77
"https://stac-extensions.github.io/file/v2.1.0/schema.json",
88
"https://stac-extensions.github.io/scientific/v1.0.0/schema.json"

examples/item_eo_and_raster_bands.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/mlm/v1.4.0/schema.json",
4+
"https://stac-extensions.github.io/mlm/v1.5.0/schema.json",
55
"https://stac-extensions.github.io/eo/v1.1.0/schema.json",
66
"https://stac-extensions.github.io/raster/v1.1.0/schema.json",
77
"https://stac-extensions.github.io/file/v1.0.0/schema.json",

examples/item_eo_bands.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$comment": "Demonstrate the use of MLM and EO for bands description, with EO bands directly in the Model Asset.",
33
"stac_version": "1.0.0",
44
"stac_extensions": [
5-
"https://stac-extensions.github.io/mlm/v1.4.0/schema.json",
5+
"https://stac-extensions.github.io/mlm/v1.5.0/schema.json",
66
"https://stac-extensions.github.io/eo/v1.1.0/schema.json",
77
"https://stac-extensions.github.io/file/v1.0.0/schema.json",
88
"https://stac-extensions.github.io/ml-aoi/v0.2.0/schema.json"

examples/item_eo_bands_summarized.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$comment": "Demonstrate the use of MLM and EO for bands description, with EO bands summarized in the Item properties and referenced by name in the Model Asset.",
33
"stac_version": "1.0.0",
44
"stac_extensions": [
5-
"https://stac-extensions.github.io/mlm/v1.4.0/schema.json",
5+
"https://stac-extensions.github.io/mlm/v1.5.0/schema.json",
66
"https://stac-extensions.github.io/eo/v1.1.0/schema.json",
77
"https://stac-extensions.github.io/file/v1.0.0/schema.json",
88
"https://stac-extensions.github.io/ml-aoi/v0.2.0/schema.json"

0 commit comments

Comments
 (0)