From 1f3eece5088f23fc62fc828501bfb66accbc2c63 Mon Sep 17 00:00:00 2001 From: veeso Date: Tue, 14 Nov 2023 11:37:47 +0100 Subject: [PATCH] fix: format --- CHANGELOG.md | 7 +++++++ README.md | 2 +- suppaftp/Cargo.toml | 2 +- suppaftp/src/sync_ftp/mod.rs | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3252a69..64eeff6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,13 @@ --- +## 5.2.2 + +Released on 14/11/2023 + +- Fix issue #61: Send + Sync trait to AsyncFtpStream/FtpStream +- Fix issue #63: FEAT function hangs on async + ## 5.2.1 Released on 16/10/2023 diff --git a/README.md b/README.md index de0c3bb..8d6e9d5 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@

Developed by veeso and Matt McCoy

-

Current version: 5.2.1 (16/10/2023)

+

Current version: 5.2.2 (14/11/2023)

", "Matt McCoy ", diff --git a/suppaftp/src/sync_ftp/mod.rs b/suppaftp/src/sync_ftp/mod.rs index 3b0906d..b006b46 100644 --- a/suppaftp/src/sync_ftp/mod.rs +++ b/suppaftp/src/sync_ftp/mod.rs @@ -184,7 +184,7 @@ where #[cfg_attr(docsrs, doc(cfg(all(feature = "secure", feature = "deprecated"))))] pub fn connect_secure_implicit( addr: A, - tls_connector: impl TlsConnector + Send + Sync +'static, + tls_connector: impl TlsConnector + Send + Sync + 'static, domain: &str, ) -> FtpResult { debug!("Connecting to server (secure)");