Skip to content

Commit

Permalink
Release libunftp 0.17.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesdejager committed Apr 18, 2021
1 parent 6a89b0a commit dcb977e
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 8 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 2021-04-18 libunftp v0.17.1

_tag: libunftp-0.17.1_

Changes in this release:

- [#327](https://github.com/bolcom/libunftp/issues/327) Allow PROT and PBSZ without requiring authentication.
- [#330](https://github.com/bolcom/libunftp/pull/330) Load TLS certificates only once at startup instead of on every connect.

## 2021-03-26 Newly splitted auth and storage back-ends

- Released [unftp-sbe-gcs](https://crates.io/crates/unftp-sbe-gcs)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libunftp"
version = "0.17.0"
version = "0.17.1"
authors = [
"Agoston Horvath <[email protected]>",
"Dávid Kosztka <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ add. Here we choose the [file system back-end](https://crates.io/crates/unftp-sb

```toml
[dependencies]
libunftp = "0.17.0"
libunftp = "0.17.1"
unftp-sbe-fs = "0.1"
tokio = { version = "1", features = ["full"] }
```
Expand Down
2 changes: 1 addition & 1 deletion crates/unftp-auth-jsonfile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ readme = "README.md"

[dependencies]
async-trait = "0.1.42"
libunftp = { version="0.17.0", path="../../"}
libunftp = { version="0.17.1", path="../../"}
unftp-sbe-fs = { version="0.1", path="../unftp-sbe-fs"}
serde = { version = "1.0.123", features = ["derive"] }
serde_json = { version = "1.0.62" }
Expand Down
2 changes: 1 addition & 1 deletion crates/unftp-auth-pam/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ readme = "README.md"

[dependencies]
async-trait = "0.1.42"
libunftp = { version="0.17.0", path="../../"}
libunftp = { version="0.17.1", path="../../"}
tracing = "0.1.23"
tracing-attributes = "0.1.12"

Expand Down
2 changes: 1 addition & 1 deletion crates/unftp-auth-rest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ readme = "README.md"
async-trait = "0.1.42"
hyper = { version = "0.14.4", features= ["client", "runtime", "stream", "http1"]}
hyper-rustls = { version = "0.22.1"}
libunftp = { version="0.17.0", path="../../"}
libunftp = { version="0.17.1", path="../../"}
unftp-sbe-fs = { version="0.1", path="../unftp-sbe-fs"}
percent-encoding = { version = "2.1.0"}
regex = "1.4.3"
Expand Down
2 changes: 1 addition & 1 deletion crates/unftp-sbe-fs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ readme = "README.md"

[dependencies]
async-trait = "0.1.42"
libunftp = { version="0.17.0", path="../../"}
libunftp = { version="0.17.1", path="../../"}
tracing = "0.1.23"
tracing-attributes = "0.1.12"
tokio = { version = "1.2.0", features = ["rt", "net", "sync", "io-util", "macros", "time", "fs"]}
Expand Down
2 changes: 1 addition & 1 deletion crates/unftp-sbe-gcs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ chrono = {version = "0.4.19", features = ["serde"]}
futures = {version = "0.3.12", features = ["std"]}
hyper = { version = "0.14.4", features= ["client", "runtime", "stream", "http1"]}
hyper-rustls = { version = "0.22.1"}
libunftp = { version="0.17.0", path="../../"}
libunftp = { version="0.17.1", path="../../"}
mime = {version = "0.3.16"}
percent-encoding = { version = "2.1.0"}
tokio = { version = "1.2.0", features = ["rt", "net", "sync", "io-util", "macros", "time", "fs"]}
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
//!
//! ```toml
//! [dependencies]
//! libunftp = "0.17.0"
//! libunftp = "0.17.1"
//! unftp-sbe-fs = "0.1"
//! tokio = { version = "1", features = ["full"] }
//! ```
Expand Down

0 comments on commit dcb977e

Please sign in to comment.