Skip to content

Commit

Permalink
Release v0.16.2
Browse files Browse the repository at this point in the history
This is a minor version release to fix the issue where PUT did not work
from lftp compiled with openssl. See issue #285
  • Loading branch information
hannesdejager committed Feb 13, 2021
1 parent 6dc0425 commit 479a5a8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libunftp"
version = "0.16.1"
version = "0.16.2"
authors = [
"Agoston Horvath <[email protected]>",
"Dávid Kosztka <[email protected]>",
Expand Down Expand Up @@ -58,7 +58,7 @@ pam-auth = { package = "pam", version = "0.7.0", optional = true }
[dev-dependencies]
async_ftp = "5.0.0"
clap = "2.33.3"
slog-term = "2.7.0"
slog-term = "2.8.0"
slog-async = "2.6.0"
pretty_assertions = "0.6.1"
pretty_env_logger = "0.4.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Then add the libunftp and tokio crates to your project's dependencies in `Cargo.

```toml
[dependencies]
libunftp = "0.16.1"
libunftp = "0.16.2"
tokio = { version = "1", features = ["full"] }
```

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! ```toml
//! [dependencies]
//! libunftp = "0.16.1"
//! libunftp = "0.16.2"
//! tokio = { version = "1", features = ["full"] }
//! ```
//! Now you're ready to develop your server! Add the following to src/main.rs:
Expand Down

0 comments on commit 479a5a8

Please sign in to comment.