Skip to content

Commit ddc9d4f

Browse files
committed
Bump version: 1.3.0 → 1.4.0
1 parent ede9284 commit ddc9d4f

14 files changed

+18
-18
lines changed

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.3.0/schema.json"
93+
value: "https://stac-extensions.github.io/mlm/v1.4.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.3.0/schema.json](https://stac-extensions.github.io/mlm/v1.3.0/schema.json)
6+
- **Identifier:** [https://stac-extensions.github.io/mlm/v1.4.0/schema.json](https://stac-extensions.github.io/mlm/v1.4.0/schema.json)
77
- **Field Name Prefix:** mlm
88
- **Scope:** Collection, Item, Asset, Links
99
- **Extension Maturity Classification:** Pilot

best-practices.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ leading to a new MLM STAC Item definition (see also [STAC Version Extension](#ve
152152
{
153153
"id": "stac-item-model",
154154
"stac_extensions": [
155-
"https://stac-extensions.github.io/mlm/v1.3.0/schema.json",
155+
"https://stac-extensions.github.io/mlm/v1.4.0/schema.json",
156156
"https://stac-extensions.github.io/ml-aoi/v0.2.0/schema.json"
157157
],
158158
"assets": {
@@ -227,7 +227,7 @@ that the model is properly instantiated from the expected weights, or that suffi
227227
```json
228228
{
229229
"stac_extensions": [
230-
"https://stac-extensions.github.io/mlm/v1.3.0/schema.json",
230+
"https://stac-extensions.github.io/mlm/v1.4.0/schema.json",
231231
"https://stac-extensions.github.io/file/v2.1.0/schema.json"
232232
],
233233
"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.3.0/schema.json",
5+
"https://stac-extensions.github.io/mlm/v1.4.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.3.0/schema.json"
4+
"https://stac-extensions.github.io/mlm/v1.4.0/schema.json"
55
],
66
"type": "Feature",
77
"id": "example-model",

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.3.0/schema.json",
4+
"https://stac-extensions.github.io/mlm/v1.4.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.3.0/schema.json",
5+
"https://stac-extensions.github.io/mlm/v1.4.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_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.3.0/schema.json",
5+
"https://stac-extensions.github.io/mlm/v1.4.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_multi_io.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.3.0/schema.json",
4+
"https://stac-extensions.github.io/mlm/v1.4.0/schema.json",
55
"https://stac-extensions.github.io/raster/v1.1.0/schema.json",
66
"https://stac-extensions.github.io/file/v1.0.0/schema.json",
77
"https://stac-extensions.github.io/ml-aoi/v0.2.0/schema.json"

examples/item_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.3.0/schema.json",
4+
"https://stac-extensions.github.io/mlm/v1.4.0/schema.json",
55
"https://stac-extensions.github.io/raster/v1.1.0/schema.json",
66
"https://stac-extensions.github.io/file/v1.0.0/schema.json",
77
"https://stac-extensions.github.io/ml-aoi/v0.2.0/schema.json"

0 commit comments

Comments
 (0)