Skip to content

Commit 8be60ec

Browse files
committed
Fixed missing cli app on Cargo registry
1 parent 06a5c9c commit 8be60ec

File tree

4 files changed

+17
-10
lines changed

4 files changed

+17
-10
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
# Changelog
22

33
- [Changelog](#changelog)
4+
- [4.1.1](#411)
45
- [4.1.0](#410)
56
- [4.0.2](#402)
67
- [4.0.1](#401)
78
- [4.0.0](#400)
89

10+
## 4.1.1
11+
12+
Released on 22/08/2021
13+
14+
- Fixed missing `cli/` directory on Cargo registry.
15+
916
## 4.1.0
1017

1118
Released on 22/08/2021

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "suppaftp"
3-
version = "4.1.0"
3+
version = "4.1.1"
44
authors = ["Matt McCoy <[email protected]>", "Christian Visintin <[email protected]>"]
55
edition = "2018"
66
documentation = "https://docs.rs/suppaftp/"
77
repository = "https://github.com/veeso/suppaftp"
88
description = "A super FTP/FTPS client library for Rust"
9-
include = ["src/**/*", "LICENSE-APACHE", "LICENSE-MIT", "README.md", "CHANGELOG.md"]
9+
include = ["src/**/*", "cli/**/*", "LICENSE-APACHE", "LICENSE-MIT", "README.md", "CHANGELOG.md"]
1010
readme = "README.md"
1111
license = "Apache-2.0/MIT"
1212
keywords = ["ftp", "ftps", "network-protocol", "async"]

README.md

Lines changed: 4 additions & 4 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.1.0 (22/08/2021)</p>
14+
<p align="center">Current version: 4.1.1 (22/08/2021)</p>
1515

1616
[![Number of Crate Downloads](https://img.shields.io/crates/d/suppaftp.svg)](https://crates.io/crates/suppaftp)
1717
[![Crate Version](https://img.shields.io/crates/v/suppaftp.svg)](https://crates.io/crates/suppaftp)
@@ -61,7 +61,7 @@ SuppaFTP is a FTP/FTPS client library written in Rust, with both support for syn
6161
To get started, first add **suppaftp** to your dependencies:
6262

6363
```toml
64-
suppaftp = "4.1.0"
64+
suppaftp = "4.1.1"
6565
```
6666

6767
### Features
@@ -71,15 +71,15 @@ suppaftp = "4.1.0"
7171
If you want to enable **support for FTPS**, you must enable the `secure` feature in your cargo dependencies. FTPS support is achieved through [rust-native-tls](https://github.com/sfackler/rust-native-tls), so check if your target systems are compatible.
7272

7373
```toml
74-
suppaftp = { version = "4.1.0", features = ["secure"] }
74+
suppaftp = { version = "4.1.1", features = ["secure"] }
7575
```
7676

7777
#### Async support
7878

7979
If you want to enable **async** support, you must enable `async` feature in your cargo dependencies.
8080

8181
```toml
82-
suppaftp = { version = "4.1.0", features = ["async"] }
82+
suppaftp = { version = "4.1.1", features = ["async"] }
8383
```
8484

8585
⚠️ If you want to enable both **secure** and **async** you must use the **async-secure** feature ⚠️

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,21 @@
2121
//! First of you need to add **suppaftp** to your project dependencies:
2222
//!
2323
//! ```toml
24-
//! suppaftp = "4.1.0"
24+
//! suppaftp = "4.1.1"
2525
//! ```
2626
//!
2727
//! If you want to enable TLS support to work with **FTPS** you need to enable the **secure** feature in your dependencies:
2828
//!
2929
//! ```toml
30-
//! suppaftp = { version = "4.1.0", features = ["secure"] }
30+
//! suppaftp = { version = "4.1.1", features = ["secure"] }
3131
//! ```
3232
//!
3333
//! While if you want to go async, then you must enable the **async** feature or if you want to mix secure and async then there is the super feature **async-secure**!
3434
//!
3535
//! ```toml
36-
//! suppaftp = { version = "4.1.0", features = ["async"] }
36+
//! suppaftp = { version = "4.1.1", features = ["async"] }
3737
//! # or
38-
//! suppaftp = { version = "4.1.0", features = ["async-secure"] }
38+
//! suppaftp = { version = "4.1.1", features = ["async-secure"] }
3939
//! ```
4040
//!
4141
//! Keep in mind that you **can't** use the **sync** and the **async** version of this library at the same time!

0 commit comments

Comments
 (0)