Skip to content

Commit

Permalink
Release libunftp version 0.20.3
Browse files Browse the repository at this point in the history
  • Loading branch information
robklg committed Dec 17, 2024
1 parent c356cb2 commit 8e5fc46
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 12 deletions.
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.3

_tag: libunftp-0.20.3_

- [#528](https://github.com/bolcom/libunftp/pull/528) Fix to enable socket reuse that caused 425 errors in passive mode

## 2024-12-15 Release of all crates

### libunftp 0.20.2
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.20.2" # remember to update html_root_url
version = "0.20.3" # 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 @@ -71,7 +71,7 @@ add. Here we choose the [file system back-end](https://crates.io/crates/unftp-sb

```toml
[dependencies]
libunftp = "0.20.2"
libunftp = "0.20.3"
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.9.0"
ipnet = "2.10.1"
iprange = "0.6.7"
libunftp = { version = "0.20.2", path = "../../" }
libunftp = { version = "0.20.3", path = "../../" }
ring = "0.16.20"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.133"
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.83"
libunftp = { version = "0.20.2", path = "../../" }
libunftp = { version = "0.20.3", path = "../../" }
tracing = { version = "0.1.41", default-features = false }
tracing-attributes = "0.1.28"

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.83"
hyper = { version = "0.14.31", features = ["client", "runtime", "stream", "http1"] }
hyper-rustls = "0.24.2"
libunftp = { version = "0.20.2", path = "../../" }
libunftp = { version = "0.20.3", path = "../../" }
percent-encoding = "2.3.1"
regex = "1.11.1"
serde = { version = "1.0.216", 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 @@ -24,7 +24,7 @@ cfg-if = "1.0"
cap-std = "3.4"
futures = { version = "0.3.31", default-features = false, features = ["std"] }
lazy_static = "1.5.0"
libunftp = { version = "0.20.2", path = "../../" }
libunftp = { version = "0.20.3", path = "../../" }
path_abs = "0.5.1"
tokio = { version = "1.42.0", features = ["rt", "net", "sync", "io-util", "time", "fs"] }
tokio-stream = "0.1.17"
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.2"
libunftp = "0.20.3"
unftp-sbe-fs = "0.2.6"
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.39", default-features = false, features = ["std", "ser
futures = { version = "0.3.31", default-features = false, features = ["std"] }
hyper = { version = "0.14.31", features = ["client", "runtime", "stream", "http1"] }
hyper-rustls = "0.24.2"
libunftp = { version = "0.20.2", path = "../../" }
libunftp = { version = "0.20.3", path = "../../" }
mime = "0.3.17"
percent-encoding = "2.3.1"
serde = { version = "1.0.216", 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.2"
libunftp = "0.20.3"
unftp-sbe-gcs = "0.2.7"
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.2"
//! libunftp = "0.20.3"
//! 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.2")]
#![doc(html_root_url = "https://docs.rs/libunftp/0.20.3")]

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

0 comments on commit 8e5fc46

Please sign in to comment.