Skip to content

Commit e9d66ed

Browse files
committed
4.6.1
1 parent f9451d9 commit e9d66ed

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 5 additions & 5 deletions
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: 4.6.0 (09/01/2023)</p>
14+
<p align="center">Current version: 4.6.1 (26/01/2023)</p>
1515

1616
<p align="center">
1717
<a href="https://opensource.org/licenses/MIT"
@@ -113,7 +113,7 @@ SuppaFTP is the main FTP/FTPS client library for Rust, with both support for syn
113113
To get started, first add **suppaftp** to your dependencies:
114114

115115
```toml
116-
suppaftp = "^4.5.0"
116+
suppaftp = "^4.6.0"
117117
```
118118

119119
### Features
@@ -123,9 +123,9 @@ suppaftp = "^4.5.0"
123123
If you want to enable **support for FTPS**, you must enable the `native-tls` or `rustls` feature in your cargo dependencies, based on the TLS provider you prefer.
124124

125125
```toml
126-
suppaftp = { version = "^4.5.0", features = ["native-tls"] }
126+
suppaftp = { version = "^4.6.0", features = ["native-tls"] }
127127
# or
128-
suppaftp = { version = "^4.5.0", features = ["rustls"] }
128+
suppaftp = { version = "^4.6.0", features = ["rustls"] }
129129
```
130130

131131
> 💡 If you don't know what to choose, `native-tls` should be preferred for compatibility reasons.
@@ -136,7 +136,7 @@ suppaftp = { version = "^4.5.0", features = ["rustls"] }
136136
If you want to enable **async** support, you must enable `async` feature in your cargo dependencies.
137137

138138
```toml
139-
suppaftp = { version = "^4.5.0", features = ["async"] }
139+
suppaftp = { version = "^4.6.0", features = ["async"] }
140140
```
141141

142142
> ⚠️ If you want to enable both **native-tls** and **async** you must use the **async-native-tls** feature ⚠️

suppaftp/src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
//! To get started, first add **suppaftp** to your dependencies:
2222
//!
2323
//! ```toml
24-
//! suppaftp = "^4.5.0"
24+
//! suppaftp = "^4.6.0"
2525
//! ```
2626
//!
2727
//! ### Features
@@ -31,9 +31,9 @@
3131
//! If you want to enable **support for FTPS**, you must enable the `native-tls` or `rustls` feature in your cargo dependencies, based on the TLS provider you prefer.
3232
//!
3333
//! ```toml
34-
//! suppaftp = { version = "^4.5.0", features = ["native-tls"] }
34+
//! suppaftp = { version = "^4.6.0", features = ["native-tls"] }
3535
//! # or
36-
//! suppaftp = { version = "^4.5.0", features = ["rustls"] }
36+
//! suppaftp = { version = "^4.6.0", features = ["rustls"] }
3737
//! ```
3838
//!
3939
//! > 💡 If you don't know what to choose, `native-tls` should be preferred for compatibility reasons.
@@ -43,7 +43,7 @@
4343
//! If you want to enable **async** support, you must enable `async` feature in your cargo dependencies.
4444
//!
4545
//! ```toml
46-
//! suppaftp = { version = "^4.5.0", features = ["async"] }
46+
//! suppaftp = { version = "^4.6.0", features = ["async"] }
4747
//! ```
4848
//!
4949
//! > ⚠️ If you want to enable both **native-tls** and **async** you must use the **async-native-tls** feature ⚠️

0 commit comments

Comments
 (0)