diff --git a/CHANGELOG.md b/CHANGELOG.md index 46d4477..2e139da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.6.0-beta.0] - 2025-03-13 + ### Added - Construct `stac_api::Search` (moved from `stac_api` crate) ([#81](https://github.com/stac-utils/stacrs/pull/81)) @@ -180,7 +182,8 @@ Non-functional release to fix releasing from Github actions. Initial release. -[Unreleased]: https://github.com/gadomski/stacrs/compare/v0.5.9...main +[Unreleased]: https://github.com/gadomski/stacrs/compare/v0.6.0-beta.0...main +[0.6.0-beta.0]: https://github.com/gadomski/stacrs/compare/v0.5.9...v0.6.0-beta.0 [0.5.9]: https://github.com/gadomski/stacrs/compare/v0.5.8...v0.5.9 [0.5.8]: https://github.com/gadomski/stacrs/compare/v0.5.7...v0.5.8 [0.5.7]: https://github.com/gadomski/stacrs/compare/v0.5.6...v0.5.7 diff --git a/Cargo.lock b/Cargo.lock index 2a61c89..e04269d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3838,7 +3838,7 @@ dependencies = [ [[package]] name = "stacrs" -version = "0.5.9" +version = "0.6.0-beta.0" dependencies = [ "clap", "geoarrow", @@ -4112,9 +4112,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.44.0" +version = "1.44.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9975ea0f48b5aa3972bf2d888c238182458437cc2a19374b81b25cdf1023fb3a" +checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a" dependencies = [ "backtrace", "bytes", @@ -4191,9 +4191,9 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.13" +version = "0.7.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078" +checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034" dependencies = [ "bytes", "futures-core", diff --git a/Cargo.toml b/Cargo.toml index 9e4562d..e06741b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stacrs" -version = "0.5.9" +version = "0.6.0-beta.0" edition = "2021" publish = false @@ -37,7 +37,7 @@ stac-cli = { git = "https://github.com/stac-utils/stac-rs", features = [ ], branch = "main" } stac-duckdb = { git = "https://github.com/stac-utils/stac-rs", branch = "main" } thiserror = "2.0.12" -tokio = { version = "1.43.0", features = ["rt-multi-thread"] } +tokio = { version = "1.44.0", features = ["rt-multi-thread"] } pyo3-log = "0.12.1" tracing = "0.1.41"