Skip to content

Commit

Permalink
release: stac-v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Sep 5, 2024
1 parent ce20406 commit 0551ed1
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ geojson = "0.24"
serde = "1"
serde_json = "1"
serde_urlencoded = "0.7"
stac = { version = "0.8", path = "../core" }
stac = { version = "0.9", path = "../core" }
thiserror = "1"
url = "2.3"

Expand Down
2 changes: 1 addition & 1 deletion 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.8", path = "../core" }
stac = { version = "0.9", path = "../core" }
stac-api = { version = "0.4", path = "../api" }
thiserror = "1"
tokio = { version = "1.23", features = ["fs", "io-util"] }
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pyo3 = { version = "0.22", optional = true }
reqwest = "0.12"
serde = "1"
serde_json = "1"
stac = { version = "0.8", path = "../core" }
stac = { version = "0.9", path = "../core" }
stac-api = { version = "0.4", path = "../api" }
stac-async = { version = "0.5", path = "../async" }
stac-duckdb = { version = "0.0.1", path = "../duckdb", optional = true }
Expand Down
5 changes: 4 additions & 1 deletion core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [0.9.0] - 2024-09-05

### Added

- `Bbox` ([#303](https://github.com/stac-utils/stac-rs/pull/303), [#328](https://github.com/stac-utils/stac-rs/pull/328))
Expand Down Expand Up @@ -346,7 +348,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

Initial release.

[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-v0.8.0...main
[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-v0.9.0...main
[0.9.0]: https://github.com/stac-utils/stac-rs/compare/stac-v0.8.0...stac-v0.9.0
[0.8.0]: https://github.com/stac-utils/stac-rs/compare/stac-v0.7.2...stac-v0.8.0
[0.7.2]: https://github.com/stac-utils/stac-rs/compare/stac-v0.7.1...stac-v0.7.2
[0.7.1]: https://github.com/stac-utils/stac-rs/compare/stac-v0.7.0...stac-v0.7.1
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stac"
version = "0.8.0"
version = "0.9.0"
authors = ["Pete Gadomski <[email protected]>"]
edition = "2021"
description = "Rust library for the SpatioTemporal Asset Catalog (STAC) specification"
Expand Down
2 changes: 1 addition & 1 deletion core/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.8"
stac = "0.9"
```

## Examples
Expand Down
2 changes: 1 addition & 1 deletion duckdb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ arrow = "52"
duckdb = "1"
geoarrow = { version = "0.3.0-beta.3" }
parquet = "52"
stac = { version = "0.8", path = "../core", features = ["geoarrow"] }
stac = { version = "0.9", path = "../core", features = ["geoarrow"] }
stac-api = { version = "0.4", path = "../api" }
thiserror = "1"

Expand Down
2 changes: 1 addition & 1 deletion pgstac/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ categories = ["database", "data-structures", "science"]
geojson = "0.24"
serde = "1"
serde_json = "1"
stac = { version = "0.8", path = "../core" }
stac = { version = "0.9", path = "../core" }
stac-api = { version = "0.4", path = "../api" }
thiserror = "1"
tokio-postgres = { version = "0.7", features = ["with-serde_json-1"] }
Expand Down
2 changes: 1 addition & 1 deletion server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pgstac = { version = "0.1", path = "../pgstac", optional = true }
serde = "1"
serde_json = "1"
serde_urlencoded = "0.7"
stac = { version = "0.8", path = "../core" }
stac = { version = "0.9", path = "../core" }
stac-api = { version = "0.4", path = "../api", features = ["geo"] }
stac-async = { version = "0.5", path = "../async" }
thiserror = "1"
Expand Down
4 changes: 2 additions & 2 deletions validate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jsonschema = "0.18"
reqwest = { version = "0.12", features = ["blocking", "json"] }
serde = "1"
serde_json = "1"
stac = { version = "0.8", path = "../core" }
stac = { version = "0.9", path = "../core" }
thiserror = "1"
url = "2"

[dev-dependencies]
geojson = "0.24"
stac = { version = "0.8", path = "../core", features = ["geo"] }
stac = { version = "0.9", path = "../core", features = ["geo"] }
rstest = "0.22"

0 comments on commit 0551ed1

Please sign in to comment.