Skip to content

Commit

Permalink
fix: format
Browse files Browse the repository at this point in the history
  • Loading branch information
veeso committed Nov 14, 2023
1 parent 388533e commit 1f3eece
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</p>

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

<p align="center">
<a href="https://opensource.org/licenses/MIT"
Expand Down
2 changes: 1 addition & 1 deletion suppaftp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "suppaftp"
version = "5.2.1"
version = "5.2.2"
authors = [
"Christian Visintin <[email protected]>",
"Matt McCoy <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion suppaftp/src/sync_ftp/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ where
#[cfg_attr(docsrs, doc(cfg(all(feature = "secure", feature = "deprecated"))))]
pub fn connect_secure_implicit<A: ToSocketAddrs>(
addr: A,
tls_connector: impl TlsConnector<Stream = T> + Send + Sync +'static,
tls_connector: impl TlsConnector<Stream = T> + Send + Sync + 'static,
domain: &str,
) -> FtpResult<Self> {
debug!("Connecting to server (secure)");
Expand Down

0 comments on commit 1f3eece

Please sign in to comment.