diff --git a/stac-api/Cargo.toml b/stac-api/Cargo.toml index beac6676..6ca9f756 100644 --- a/stac-api/Cargo.toml +++ b/stac-api/Cargo.toml @@ -20,7 +20,7 @@ schemars = { version = "0.8", optional = true } serde = "1" serde_json = "1" serde_urlencoded = "0.7" -stac = { version = "0.5", path = "../stac" } +stac = { version = "0.6", path = "../stac" } thiserror = "1" url = "2.3" diff --git a/stac-async/Cargo.toml b/stac-async/Cargo.toml index 4827f31e..0ffe28da 100644 --- a/stac-async/Cargo.toml +++ b/stac-async/Cargo.toml @@ -18,7 +18,7 @@ http = "1" reqwest = { version = "0.12", features = ["json"] } serde = "1" serde_json = "1" -stac = { version = "0.5", path = "../stac" } +stac = { version = "0.6", path = "../stac" } stac-api = { version = "0.3", path = "../stac-api" } thiserror = "1" tokio = { version = "1.23", features = ["fs", "io-util"] } diff --git a/stac-cli/Cargo.toml b/stac-cli/Cargo.toml index f4e122d9..6c308ee1 100644 --- a/stac-cli/Cargo.toml +++ b/stac-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stac-cli" -version = "0.0.6" +version = "0.0.7" edition = "2021" description = "Command line interface for stac-rs" documentation = "https://docs.rs/stac-cli" @@ -20,7 +20,7 @@ indicatif = "0.17" reqwest = "0.12" serde = "1" serde_json = "1" -stac = { version = "0.5", path = "../stac" } +stac = { version = "0.6", path = "../stac" } stac-api = { version = "0.3", path = "../stac-api" } stac-async = { version = "0.5", path = "../stac-async" } stac-validate = { version = "0.1", path = "../stac-validate" } diff --git a/stac-validate/Cargo.toml b/stac-validate/Cargo.toml index b7d4ce1f..dd25334f 100644 --- a/stac-validate/Cargo.toml +++ b/stac-validate/Cargo.toml @@ -15,10 +15,10 @@ jsonschema = "0.17" reqwest = { version = "0.12", features = ["blocking", "json"] } serde = "1" serde_json = "1" -stac = { version = "0.5", path = "../stac" } +stac = { version = "0.6", path = "../stac" } thiserror = "1" url = "2" [dev-dependencies] geojson = "0.24" -stac = { version = "0.5", path = "../stac", features = ["geo"] } +stac = { version = "0.6", path = "../stac", features = ["geo"] } diff --git a/stac/Cargo.toml b/stac/Cargo.toml index eb5ffd62..85f2094e 100644 --- a/stac/Cargo.toml +++ b/stac/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stac" -version = "0.5.3" +version = "0.6.0" authors = ["Pete Gadomski "] edition = "2021" description = "Rust library for the SpatioTemporal Asset Catalog (STAC) specification" diff --git a/stac/README.md b/stac/README.md index 6774f378..1bfe58c0 100644 --- a/stac/README.md +++ b/stac/README.md @@ -14,7 +14,7 @@ To use the library in your project: ```toml [dependencies] -stac = "0.5" +stac = "0.6" ``` ## Examples @@ -41,7 +41,7 @@ There are four opt-in features. ```toml [dependencies] -stac = { version = "0.5", features = ["reqwest"]} +stac = { version = "0.6", features = ["reqwest"]} ``` Then: @@ -68,7 +68,7 @@ To use [GDAL](https://gdal.org) to create items with projection and raster band ```toml [dependencies] -stac = { version = "0.5", features = ["gdal"] } +stac = { version = "0.6", features = ["gdal"] } ``` Then, items created from rasters will include the projection and raster extensions: @@ -89,7 +89,7 @@ To use [geojson](https://docs.rs/geojson) and [geo](https://docs.rs/geo) to add ```toml [dependencies] -stac = { version = "0.5", features = ["geo"] } +stac = { version = "0.6", features = ["geo"] } ``` Then, you can set an item's geometry and bounding box at the same time: @@ -117,5 +117,5 @@ This is mostly useful for auto-generating OpenAPI documentation for STAC APIs. ```toml [dependencies] -stac = { version = "0.5", features = ["schemars"]} +stac = { version = "0.6", features = ["schemars"]} ```