From 2f6485caf23caacb26fc2d4c7713a8cacdc2eb8e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Aug 2024 04:53:57 +0000 Subject: [PATCH 1/8] chore: release --- CHANGELOG.md | 5 +++++ Cargo.toml | 6 +++--- openssh-sftp-client-lowlevel/Cargo.toml | 4 ++-- openssh-sftp-error/CHANGELOG.md | 12 ++++++++++++ openssh-sftp-error/Cargo.toml | 2 +- 5 files changed, 23 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4948280..12a4f71 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.6.1](https://github.com/openssh-rust/openssh-sftp-client/compare/openssh-sftp-client-lowlevel-v0.6.0...openssh-sftp-client-lowlevel-v0.6.1) - 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..47c2918 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssh-sftp-client" -version = "0.14.6" +version = "0.14.7" 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.4.1", path = "openssh-sftp-error" } +openssh-sftp-client-lowlevel = { version = "0.6.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 9c207e9..52c29db 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.6.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.4.0", path = "../openssh-sftp-error" } +openssh-sftp-error = { version = "0.4.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 9fd80e0..1f0225e 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.4.1](https://github.com/openssh-rust/openssh-sftp-client/compare/openssh-sftp-error-v0.4.0...openssh-sftp-error-v0.4.1) - 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..af184d6 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.4.1" edition = "2018" authors = ["Jiahao XU "] From 3c523ec067e2a87f1e2dd99a255dffe1dac1a98e Mon Sep 17 00:00:00 2001 From: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Date: Sat, 10 Aug 2024 14:54:36 +1000 Subject: [PATCH 2/8] Release openssh-sftp-client v0.15.0 Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 47c2918..7b496e1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssh-sftp-client" -version = "0.14.7" +version = "0.15.0" edition = "2021" rust-version = "1.64" From a5f861850f6d30609a968fe98c87b2dc0d34a679 Mon Sep 17 00:00:00 2001 From: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Date: Sat, 10 Aug 2024 14:55:59 +1000 Subject: [PATCH 3/8] Bump openssh-sftp-error to v0.5.0 Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --- openssh-sftp-error/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openssh-sftp-error/Cargo.toml b/openssh-sftp-error/Cargo.toml index af184d6..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.1" +version = "0.5.0" edition = "2018" authors = ["Jiahao XU "] From 12b9f538e2d7e32f6eada4aef1dd5a4c9bf4a841 Mon Sep 17 00:00:00 2001 From: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Date: Sat, 10 Aug 2024 14:56:24 +1000 Subject: [PATCH 4/8] Fix openssh-sftp-client deps Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7b496e1..c601a70 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ features = ["openssh", "tracing"] rustdoc-args = ["--cfg", "docsrs"] [dependencies] -openssh-sftp-error = { version = "0.4.1", path = "openssh-sftp-error" } +openssh-sftp-error = { version = "0.5.0", path = "openssh-sftp-error" } openssh-sftp-client-lowlevel = { version = "0.6.1", path = "openssh-sftp-client-lowlevel" } once_cell = "1.9.0" From c357a77fc75d480dc5f6e18ecccd392664d3e14d Mon Sep 17 00:00:00 2001 From: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Date: Sat, 10 Aug 2024 14:57:02 +1000 Subject: [PATCH 5/8] Update openssh-sftp-error CHANGELOG.md Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --- openssh-sftp-error/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openssh-sftp-error/CHANGELOG.md b/openssh-sftp-error/CHANGELOG.md index 1f0225e..6cefadc 100644 --- a/openssh-sftp-error/CHANGELOG.md +++ b/openssh-sftp-error/CHANGELOG.md @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.4.1](https://github.com/openssh-rust/openssh-sftp-client/compare/openssh-sftp-error-v0.4.0...openssh-sftp-error-v0.4.1) - 2024-08-10 +## [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)) From 5fa75828ec29c25ea5d08fe94f171acea1cb5019 Mon Sep 17 00:00:00 2001 From: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Date: Sat, 10 Aug 2024 14:58:23 +1000 Subject: [PATCH 6/8] Release openssh-sftp-client-lowlevel 0.7.0 Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --- openssh-sftp-client-lowlevel/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openssh-sftp-client-lowlevel/Cargo.toml b/openssh-sftp-client-lowlevel/Cargo.toml index 52c29db..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.1" +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.1", 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" From c9dd017ddf4024850e7f261b2edb697bb8953f02 Mon Sep 17 00:00:00 2001 From: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Date: Sat, 10 Aug 2024 14:58:43 +1000 Subject: [PATCH 7/8] Bump openssh-sftp-client-lowlevel to 0.7.0 Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c601a70..a96b7b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ rustdoc-args = ["--cfg", "docsrs"] [dependencies] openssh-sftp-error = { version = "0.5.0", path = "openssh-sftp-error" } -openssh-sftp-client-lowlevel = { version = "0.6.1", path = "openssh-sftp-client-lowlevel" } +openssh-sftp-client-lowlevel = { version = "0.7.0", path = "openssh-sftp-client-lowlevel" } once_cell = "1.9.0" From c1fd48c9ce470d0e79021451e1c1cad733856e0c Mon Sep 17 00:00:00 2001 From: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Date: Sat, 10 Aug 2024 14:59:05 +1000 Subject: [PATCH 8/8] Update CHANGELOG.md Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12a4f71..2d063fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.6.1](https://github.com/openssh-rust/openssh-sftp-client/compare/openssh-sftp-client-lowlevel-v0.6.0...openssh-sftp-client-lowlevel-v0.6.1) - 2024-08-10 +## [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