Skip to content

Commit 1f3eece

Browse files
committed
fix: format
1 parent 388533e commit 1f3eece

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@
2828

2929
---
3030

31+
## 5.2.2
32+
33+
Released on 14/11/2023
34+
35+
- Fix issue #61: Send + Sync trait to AsyncFtpStream/FtpStream
36+
- Fix issue #63: FEAT function hangs on async
37+
3138
## 5.2.1
3239

3340
Released on 16/10/2023

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</p>
1212

1313
<p align="center">Developed by <a href="https://veeso.github.io/">veeso</a> and <a href="https://github.com/mattnenterprise">Matt McCoy</a></p>
14-
<p align="center">Current version: 5.2.1 (16/10/2023)</p>
14+
<p align="center">Current version: 5.2.2 (14/11/2023)</p>
1515

1616
<p align="center">
1717
<a href="https://opensource.org/licenses/MIT"

suppaftp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "suppaftp"
3-
version = "5.2.1"
3+
version = "5.2.2"
44
authors = [
55
"Christian Visintin <[email protected]>",
66
"Matt McCoy <[email protected]>",

suppaftp/src/sync_ftp/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ where
184184
#[cfg_attr(docsrs, doc(cfg(all(feature = "secure", feature = "deprecated"))))]
185185
pub fn connect_secure_implicit<A: ToSocketAddrs>(
186186
addr: A,
187-
tls_connector: impl TlsConnector<Stream = T> + Send + Sync +'static,
187+
tls_connector: impl TlsConnector<Stream = T> + Send + Sync + 'static,
188188
domain: &str,
189189
) -> FtpResult<Self> {
190190
debug!("Connecting to server (secure)");

0 commit comments

Comments
 (0)