Skip to content

Commit 0551ed1

Browse files
committed
release: stac-v0.9.0
1 parent ce20406 commit 0551ed1

File tree

10 files changed

+14
-11
lines changed

10 files changed

+14
-11
lines changed

api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ geojson = "0.24"
2020
serde = "1"
2121
serde_json = "1"
2222
serde_urlencoded = "0.7"
23-
stac = { version = "0.8", path = "../core" }
23+
stac = { version = "0.9", path = "../core" }
2424
thiserror = "1"
2525
url = "2.3"
2626

async/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ http = "1"
1818
reqwest = { version = "0.12", features = ["json"] }
1919
serde = "1"
2020
serde_json = "1"
21-
stac = { version = "0.8", path = "../core" }
21+
stac = { version = "0.9", path = "../core" }
2222
stac-api = { version = "0.4", path = "../api" }
2323
thiserror = "1"
2424
tokio = { version = "1.23", features = ["fs", "io-util"] }

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pyo3 = { version = "0.22", optional = true }
3434
reqwest = "0.12"
3535
serde = "1"
3636
serde_json = "1"
37-
stac = { version = "0.8", path = "../core" }
37+
stac = { version = "0.9", path = "../core" }
3838
stac-api = { version = "0.4", path = "../api" }
3939
stac-async = { version = "0.5", path = "../async" }
4040
stac-duckdb = { version = "0.0.1", path = "../duckdb", optional = true }

core/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [0.9.0] - 2024-09-05
10+
911
### Added
1012

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

347349
Initial release.
348350

349-
[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-v0.8.0...main
351+
[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-v0.9.0...main
352+
[0.9.0]: https://github.com/stac-utils/stac-rs/compare/stac-v0.8.0...stac-v0.9.0
350353
[0.8.0]: https://github.com/stac-utils/stac-rs/compare/stac-v0.7.2...stac-v0.8.0
351354
[0.7.2]: https://github.com/stac-utils/stac-rs/compare/stac-v0.7.1...stac-v0.7.2
352355
[0.7.1]: https://github.com/stac-utils/stac-rs/compare/stac-v0.7.0...stac-v0.7.1

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stac"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors = ["Pete Gadomski <[email protected]>"]
55
edition = "2021"
66
description = "Rust library for the SpatioTemporal Asset Catalog (STAC) specification"

core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To use the library in your project:
1414

1515
```toml
1616
[dependencies]
17-
stac = "0.8"
17+
stac = "0.9"
1818
```
1919

2020
## Examples

duckdb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ arrow = "52"
1515
duckdb = "1"
1616
geoarrow = { version = "0.3.0-beta.3" }
1717
parquet = "52"
18-
stac = { version = "0.8", path = "../core", features = ["geoarrow"] }
18+
stac = { version = "0.9", path = "../core", features = ["geoarrow"] }
1919
stac-api = { version = "0.4", path = "../api" }
2020
thiserror = "1"
2121

pgstac/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ categories = ["database", "data-structures", "science"]
1414
geojson = "0.24"
1515
serde = "1"
1616
serde_json = "1"
17-
stac = { version = "0.8", path = "../core" }
17+
stac = { version = "0.9", path = "../core" }
1818
stac-api = { version = "0.4", path = "../api" }
1919
thiserror = "1"
2020
tokio-postgres = { version = "0.7", features = ["with-serde_json-1"] }

server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pgstac = { version = "0.1", path = "../pgstac", optional = true }
2626
serde = "1"
2727
serde_json = "1"
2828
serde_urlencoded = "0.7"
29-
stac = { version = "0.8", path = "../core" }
29+
stac = { version = "0.9", path = "../core" }
3030
stac-api = { version = "0.4", path = "../api", features = ["geo"] }
3131
stac-async = { version = "0.5", path = "../async" }
3232
thiserror = "1"

validate/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jsonschema = "0.18"
1515
reqwest = { version = "0.12", features = ["blocking", "json"] }
1616
serde = "1"
1717
serde_json = "1"
18-
stac = { version = "0.8", path = "../core" }
18+
stac = { version = "0.9", path = "../core" }
1919
thiserror = "1"
2020
url = "2"
2121

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

0 commit comments

Comments
 (0)