Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release libunftp 1.20.1 #517

Merged
merged 1 commit into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

### libunftp 0.20.1

- Fixed a build issue on Windows
- Upgraded dependencies
- Fixed examples on FreeBSD

### unftp-auth-jsonfile v0.3.4, unftp-auth-pam v0.2.5, unftp-auth-rest v0.2.5

- Compiled against libunftp v0.20.0
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libunftp"
version = "0.20.0" # remember to update html_root_url
version = "0.20.1" # remember to update html_root_url
authors = [
"Agoston Horvath <[email protected]>",
"Dávid Kosztka <[email protected]>",
Expand Down Expand Up @@ -41,7 +41,7 @@ async-trait = "0.1.80"
bitflags = "2.5.0"
bytes = "1.6.0"
chrono = { version = "0.4.38", default-features = false, features = ["clock", "std"] }
derive_more = { version = "0.99.17", features = ["display"] }
derive_more = { version = "0.99.18", features = ["display"] }
futures-util = { version = "0.3.30", default-features = false, features = ["alloc", "sink"] }
getrandom = "0.2.15"
lazy_static = "1.4.0"
Expand All @@ -50,7 +50,7 @@ moka = { version = "0.12.7", default-features = false, features = ["sync"] }
nix = { version = "0.29.0", default-features = false, features = ["fs"] }
prometheus = { version = "0.13.4", default-features = false }
proxy-protocol = "0.5.0"
rustls = "0.23.8"
rustls = "0.23.10"
rustls-pemfile = "2.1.2"
slog = { version = "2.7.0", features = ["max_level_trace", "release_max_level_info"] }
slog-stdlog = "4.1.1"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ add. Here we choose the [file system back-end](https://crates.io/crates/unftp-sb

```toml
[dependencies]
libunftp = "0.19.0"
libunftp = "0.20.1"
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.21.7"
bytes = "1.6.0"
ipnet = "2.9.0"
iprange = "0.6.7"
libunftp = { version = "0.20.0", path = "../../" }
libunftp = { version = "0.20.1", path = "../../" }
ring = "0.16.20"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
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.80"
libunftp = { version = "0.20.0", path = "../../" }
libunftp = { version = "0.20.1", path = "../../" }
tracing = { version = "0.1.40", default-features = false }
tracing-attributes = "0.1.27"

Expand Down
6 changes: 3 additions & 3 deletions crates/unftp-auth-rest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ readme = "README.md"

[dependencies]
async-trait = "0.1.80"
hyper = { version = "0.14.28", features = ["client", "runtime", "stream", "http1"] }
hyper = { version = "0.14.29", features = ["client", "runtime", "stream", "http1"] }
hyper-rustls = "0.24.2"
libunftp = { version = "0.20.0", path = "../../" }
libunftp = { version = "0.20.1", path = "../../" }
percent-encoding = "2.3.1"
regex = "1.10.4"
regex = "1.10.5"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
tokio = { version = "1.38.0", features = ["rt", "net", "sync", "io-util", "time"] }
Expand Down
6 changes: 3 additions & 3 deletions crates/unftp-sbe-fs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ cfg-if = "1.0"
cap-std = "2.0"
futures = { version = "0.3.30", default-features = false, features = ["std"] }
lazy_static = "1.4.0"
libunftp = { version = "0.20.0", path = "../../" }
libunftp = { version = "0.20.1", path = "../../" }
path_abs = "0.5.1"
tokio = { version = "1.38.0", features = ["rt", "net", "sync", "io-util", "time", "fs"] }
tokio-stream = "0.1.15"
Expand All @@ -38,7 +38,7 @@ more-asserts = "0.3.1"
nix = { version = "0.29.0", default-features = false, features = ["user"] }
pretty_assertions = "1.4.0"
pretty_env_logger = "0.5.0"
regex = "1.10.4"
regex = "1.10.5"
rstest = "0.18.2"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
Expand All @@ -50,7 +50,7 @@ tracing-subscriber = "0.3.18"
getrandom = "0.2.15"

[target.'cfg(target_os = "freebsd")'.dev-dependencies]
capsicum = { version = "0.4.0", features = ["casper"] }
capsicum = { version = "0.4.2", features = ["casper"] }
capsicum-net = { version = "0.1.0", features = ["tokio"] }

[lints]
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.20.0"
libunftp = "0.20.1"
unftp-sbe-fs = "0.2.5"
tokio = { version = "1", features = ["full"] }
```
Expand Down
4 changes: 2 additions & 2 deletions crates/unftp-sbe-gcs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ base64 = "0.21.7"
bytes = "1.6.0"
chrono = { version = "0.4.38", default-features = false, features = ["std", "serde"] }
futures = { version = "0.3.30", default-features = false, features = ["std"] }
hyper = { version = "0.14.28", features = ["client", "runtime", "stream", "http1"] }
hyper = { version = "0.14.29", features = ["client", "runtime", "stream", "http1"] }
hyper-rustls = "0.24.2"
libunftp = { version = "0.20.0", path = "../../" }
libunftp = { version = "0.20.1", path = "../../" }
mime = "0.3.17"
percent-encoding = "2.3.1"
serde = { version = "1.0.203", 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 @@ -15,7 +15,7 @@ Add the needed dependencies to Cargo.toml:

```toml
[dependencies]
libunftp = "0.20.0"
libunftp = "0.20.1"
unftp-sbe-gcs = "0.2.6"
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 @@ -9,7 +9,7 @@
//!
//! ```toml
//! [dependencies]
//! libunftp = "0.20.0"
//! libunftp = "0.20.1"
//! unftp-sbe-gcs = "0.2.5"
//! 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,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/libunftp/0.20.0")]
#![doc(html_root_url = "https://docs.rs/libunftp/0.20.1")]

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