diff --git a/CHANGELOG.md b/CHANGELOG.md index 4948280..2d063fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.0](https://github.com/openssh-rust/openssh-sftp-client/compare/openssh-sftp-client-lowlevel-v0.6.0...openssh-sftp-client-lowlevel-v0.7.0) - 2024-08-10 + +### Other +- updated the following local packages: openssh-sftp-error + ## [0.14.6](https://github.com/openssh-rust/openssh-sftp-client/compare/openssh-sftp-client-v0.14.5...openssh-sftp-client-v0.14.6) - 2024-07-25 ### Other diff --git a/Cargo.toml b/Cargo.toml index 8009c6a..a96b7b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssh-sftp-client" -version = "0.14.6" +version = "0.15.0" edition = "2021" rust-version = "1.64" @@ -31,8 +31,8 @@ features = ["openssh", "tracing"] rustdoc-args = ["--cfg", "docsrs"] [dependencies] -openssh-sftp-error = { version = "0.4.0", path = "openssh-sftp-error" } -openssh-sftp-client-lowlevel = { version = "0.6.0", path = "openssh-sftp-client-lowlevel" } +openssh-sftp-error = { version = "0.5.0", path = "openssh-sftp-error" } +openssh-sftp-client-lowlevel = { version = "0.7.0", 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 9c207e9..157900d 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.6.0" +version = "0.7.0" 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.4.0", path = "../openssh-sftp-error" } +openssh-sftp-error = { version = "0.5.0", 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 9fd80e0..6cefadc 100644 --- a/openssh-sftp-error/CHANGELOG.md +++ b/openssh-sftp-error/CHANGELOG.md @@ -1 +1,13 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [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 +- Update openssh requirement from 0.10.0 to 0.11.0 ([#138](https://github.com/openssh-rust/openssh-sftp-client/pull/138)) The changelog for this crate is kept in the project's Rust documentation in the changelog module. diff --git a/openssh-sftp-error/Cargo.toml b/openssh-sftp-error/Cargo.toml index 0acf394..09fad19 100644 --- a/openssh-sftp-error/Cargo.toml +++ b/openssh-sftp-error/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssh-sftp-error" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = ["Jiahao XU "]