diff --git a/CHANGELOG.md b/CHANGELOG.md index d0b67e2..a18c11e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.15.2](https://github.com/openssh-rust/openssh-sftp-client/compare/openssh-sftp-client-v0.15.1...openssh-sftp-client-v0.15.2) - 2024-11-06 + +### Other + +- updated the following local packages: openssh-sftp-error + ## [0.15.1](https://github.com/openssh-rust/openssh-sftp-client/compare/openssh-sftp-client-v0.15.0...openssh-sftp-client-v0.15.1) - 2024-09-13 ### Other diff --git a/Cargo.toml b/Cargo.toml index 9dccd86..b6856de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssh-sftp-client" -version = "0.15.1" +version = "0.15.2" edition = "2021" rust-version = "1.64" @@ -31,8 +31,8 @@ features = ["openssh", "tracing"] rustdoc-args = ["--cfg", "docsrs"] [dependencies] -openssh-sftp-error = { version = "0.5.0", path = "openssh-sftp-error" } -openssh-sftp-client-lowlevel = { version = "0.7.0", path = "openssh-sftp-client-lowlevel" } +openssh-sftp-error = { version = "0.5.1", path = "openssh-sftp-error" } +openssh-sftp-client-lowlevel = { version = "0.7.1", path = "openssh-sftp-client-lowlevel" } once_cell = "1.9.0" diff --git a/openssh-sftp-client-lowlevel/Cargo.toml b/openssh-sftp-client-lowlevel/Cargo.toml index 157900d..8649340 100644 --- a/openssh-sftp-client-lowlevel/Cargo.toml +++ b/openssh-sftp-client-lowlevel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssh-sftp-client-lowlevel" -version = "0.7.0" +version = "0.7.1" edition = "2018" authors = ["Jiahao XU "] @@ -15,7 +15,7 @@ categories = ["asynchronous", "network-programming", "api-bindings"] [dependencies] awaitable = "0.4.0" openssh-sftp-protocol = { version = "0.24.0", features = ["bytes"] } -openssh-sftp-error = { version = "0.5.0", path = "../openssh-sftp-error" } +openssh-sftp-error = { version = "0.5.1", path = "../openssh-sftp-error" } concurrent_arena = "0.1.7" derive_destructure2 = "0.1.0" diff --git a/openssh-sftp-error/CHANGELOG.md b/openssh-sftp-error/CHANGELOG.md index 6cefadc..a9a0e25 100644 --- a/openssh-sftp-error/CHANGELOG.md +++ b/openssh-sftp-error/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.1](https://github.com/openssh-rust/openssh-sftp-client/compare/openssh-sftp-error-v0.5.0...openssh-sftp-error-v0.5.1) - 2024-11-06 + +### Other + +- Update thiserror requirement from 1.0.29 to 2.0.0 ([#142](https://github.com/openssh-rust/openssh-sftp-client/pull/142)) + ## [0.5.0](https://github.com/openssh-rust/openssh-sftp-client/compare/openssh-sftp-error-v0.4.0...openssh-sftp-error-v0.5.0) - 2024-08-10 ### Other diff --git a/openssh-sftp-error/Cargo.toml b/openssh-sftp-error/Cargo.toml index c57c2bf..4197be2 100644 --- a/openssh-sftp-error/Cargo.toml +++ b/openssh-sftp-error/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssh-sftp-error" -version = "0.5.0" +version = "0.5.1" edition = "2018" authors = ["Jiahao XU "]