Skip to content

Commit

Permalink
feat: release
Browse files Browse the repository at this point in the history
  • Loading branch information
veeso committed Jan 6, 2024
1 parent 41cf6e3 commit a0537a2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SuppaFTP

<p align="center">
<img src="/assets/images/suppaftp.svg" width="256" height="256" />
<img src="/assets/images/suppaftp.svg" alt="logo" width="256" height="256" />
</p>
<p align="center">~ A super FTP/FTPS client library for Rust ~</p>
<p align="center">
Expand All @@ -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.2 (14/11/2023)</p>
<p align="center">Current version: 5.3.0 (06/01/2024)</p>

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

```toml
suppaftp = "^5.2.0"
suppaftp = "^5.3.0"
```

### Features
Expand All @@ -132,9 +132,9 @@ suppaftp = "^5.2.0"
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.

```toml
suppaftp = { version = "^5.2.0", features = ["native-tls"] }
suppaftp = { version = "^5.3.0", features = ["native-tls"] }
# or
suppaftp = { version = "^5.2.0", features = ["rustls"] }
suppaftp = { version = "^5.3.0", features = ["rustls"] }
```

> 💡 If you don't know what to choose, `native-tls` should be preferred for compatibility reasons.
Expand Down
4 changes: 2 additions & 2 deletions suppaftp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "suppaftp"
version = "5.2.2"
version = "5.3.0"
authors = [
"Christian Visintin <[email protected]>",
"Matt McCoy <[email protected]>",
Expand Down Expand Up @@ -46,7 +46,7 @@ env_logger = "^0.10"
pretty_assertions = "^1.0.0"
rand = "^0.8.4"
serial_test = "^2.0"
webpki-roots = "0.25"
webpki-roots = "0.26"

[features]
default = []
Expand Down

0 comments on commit a0537a2

Please sign in to comment.