Skip to content

Commit

Permalink
release: stac v0.6.0, stac-cli v0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Apr 11, 2024
1 parent e345ef4 commit f520fe0
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion stac-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion stac-async/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
4 changes: 2 additions & 2 deletions stac-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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" }
Expand Down
4 changes: 2 additions & 2 deletions stac-validate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion stac/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stac"
version = "0.5.3"
version = "0.6.0"
authors = ["Pete Gadomski <[email protected]>"]
edition = "2021"
description = "Rust library for the SpatioTemporal Asset Catalog (STAC) specification"
Expand Down
10 changes: 5 additions & 5 deletions stac/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To use the library in your project:

```toml
[dependencies]
stac = "0.5"
stac = "0.6"
```

## Examples
Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand Down Expand Up @@ -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"]}
```

0 comments on commit f520fe0

Please sign in to comment.