Skip to content

Commit

Permalink
Release libunftp v0.18.5 (#422)
Browse files Browse the repository at this point in the history
  • Loading branch information
robklg authored Jun 25, 2022
1 parent 3b8ae3e commit d11879d
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Changelog

## Upcoming
## 2022-06-24 libunftp 0.18.5

- [#416](https://github.com/bolcom/libunftp/pull/416) Support for RMD and CWD in GCS.
- [#415](https://github.com/bolcom/libunftp/pull/415) Support directory timestamps in GCS.
- [#414](https://github.com/bolcom/libunftp/pull/414) Fix display issues for Windows clients.
_tag: libunftp-0.18.5_

- [#414](https://github.com/bolcom/libunftp/pull/414) Fixed path display issues for Windows clients.
- [#413](https://github.com/bolcom/libunftp/pull/413) Fixed issue where the `OPTS UTF8` command was not handled correctly
as seen with the FTP client included in Windows Explorer.
- Upgraded dependencies
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.18.4" # remember to update html_root_url
version = "0.18.5" # remember to update html_root_url
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 @@ -67,7 +67,7 @@ add. Here we choose the [file system back-end](https://crates.io/crates/unftp-sb

```toml
[dependencies]
libunftp = "0.18.4"
libunftp = "0.18.5"
unftp-sbe-fs = "0.2"
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 @@ -23,7 +23,7 @@ base64 = "0.13.0"
bytes = "1.1.0"
ipnet = "2.5.0"
iprange = "0.6.7"
libunftp = { version="0.18.4", path="../../"}
libunftp = { version="0.18.5", path="../../"}
ring = "0.16.20"
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
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.56"
libunftp = { version="0.18.4", path="../../"}
libunftp = { version="0.18.5", path="../../"}
tracing = { version = "0.1.35", default-features = false }
tracing-attributes = "0.1.21"

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.56"
hyper = { version = "0.14.19", features = ["client", "runtime", "stream", "http1"] }
hyper-rustls = "0.23.0"
libunftp = { version="0.18.4", path="../../"}
libunftp = { version="0.18.5", path="../../"}
percent-encoding = "2.1.0"
regex = "1.5.6"
serde = { version = "1.0.137", features = ["derive"] }
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 @@ -21,7 +21,7 @@ readme = "README.md"
[dependencies]
async-trait = "0.1.56"
futures = { version = "0.3.21", default-features = false, features = ["std"] }
libunftp = { version="0.18.4", path="../../"}
libunftp = { version="0.18.5", path="../../"}
path_abs = "0.5.1"
tokio = { version = "1.19.2", features = ["rt", "net", "sync", "io-util", "time", "fs"] }
tokio-stream = "0.1.9"
Expand Down
2 changes: 1 addition & 1 deletion crates/unftp-sbe-fs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Add the libunftp and tokio crates to your project's dependencies in `Cargo.toml`

```toml
[dependencies]
libunftp = "0.18.4"
libunftp = "0.18.5"
unftp-sbe-fs = "0.2.0"
tokio = { version = "1", features = ["full"] }
```
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 @@ -25,7 +25,7 @@ chrono = { version = "0.4.19", default-features = false, features = ["std", "ser
futures = { version = "0.3.21", default-features = false, features = ["std"] }
hyper = { version = "0.14.19", features = ["client", "runtime", "stream", "http1"] }
hyper-rustls = "0.23.0"
libunftp = { version="0.18.4", path="../../"}
libunftp = { version="0.18.5", path="../../"}
mime = "0.3.16"
percent-encoding = "2.1.0"
serde = { version = "1.0.137", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/unftp-sbe-gcs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Add the needed dependencies to Cargo.toml:

```toml
[dependencies]
libunftp = "0.18.4"
libunftp = "0.18.5"
unftp-sbe-gcs = "0.2.0"
tokio = { version = "1", features = ["full"] }
```
Expand Down
2 changes: 1 addition & 1 deletion crates/unftp-sbe-gcs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//!
//! ```toml
//! [dependencies]
//! libunftp = "0.18.4"
//! libunftp = "0.18.5"
//! unftp-sbe-gcs = "0.2.0"
//! tokio = { version = "1", features = ["full"] }
//! ```
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#![deny(clippy::all)]
#![deny(missing_docs)]
#![forbid(unsafe_code)]
#![doc(html_root_url = "https://docs.rs/libunftp/0.18.4")]
#![doc(html_root_url = "https://docs.rs/libunftp/0.18.5")]

//! libunftp is an extensible, async, cloud orientated FTP(S) server library.
//!
Expand All @@ -20,7 +20,7 @@
//!
//! ```toml
//! [dependencies]
//! libunftp = "0.18.4"
//! libunftp = "0.18.5"
//! unftp-sbe-fs = "0.2.0"
//! tokio = { version = "1", features = ["full"] }
//! ```
Expand Down

0 comments on commit d11879d

Please sign in to comment.