Skip to content

Commit e9a7604

Browse files
committed
Release libunftp version 0.21.0
1 parent 24fc91e commit e9a7604

4 files changed

Lines changed: 14 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# Changelog
22

3-
### Upcoming release
3+
### libunftp 0.21.0
44

5-
- Upgrade dependencies
5+
- Upgraded dependencies
66
- Compiling against Rust 1.85.0
7+
- Bumped codebase to Edition 2024
8+
- [#531](https://github.com/bolcom/libunftp/pull/531) Implement EPSV FTP command
9+
- [#533](https://github.com/bolcom/libunftp/pull/533) BREAKING: Make passive port range inclusive
10+
- [#519](https://github.com/bolcom/libunftp/pull/519) Create new `ring` feature to use `ring` over `aws-lc-rs`
11+
- [#536](https://github.com/bolcom/libunftp/pull/536) Implement MLST command
12+
- Add `ftps_manual` method to ServerBuilder, hiding it behind a `experimental` feature.
713

814
### libunftp 0.20.3
915

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libunftp"
3-
version = "0.20.3" # remember to update html_root_url
3+
version = "0.21.0" # remember to update html_root_url
44
authors = [
55
"Agoston Horvath <ahorvath@bol.com>",
66
"Dávid Kosztka <dkosztka@bol.com>",

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ To use a specific provider, enable the corresponding feature in your `Cargo.toml
6565

6666
```toml
6767
[dependencies]
68-
libunftp = { version = "0.20.3", features = ["ring"] } # Use ring
68+
libunftp = { version = "0.21.0", features = ["ring"] } # Use ring
6969
# or
70-
libunftp = { version = "0.20.3", features = ["aws_lc_rs"] } # Use aws-lc-rs (default)
70+
libunftp = { version = "0.21.0", features = ["aws_lc_rs"] } # Use aws-lc-rs (default)
7171
```
7272

7373
The default provider is `aws-lc-rs` for backward compatibility. Choose the provider that best fits your needs:
@@ -93,7 +93,7 @@ add. Here we choose the [file system back-end](https://crates.io/crates/unftp-sb
9393

9494
```toml
9595
[dependencies]
96-
libunftp = "0.20.3"
96+
libunftp = "0.21.0"
9797
unftp-sbe-fs = "0.2"
9898
tokio = { version = "1", features = ["full"] }
9999
```

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/libunftp/0.20.3")]
1+
#![doc(html_root_url = "https://docs.rs/libunftp/0.21.0")]
22

33
//! libunftp is an extensible, async, cloud orientated FTP(S) server library.
44
//!
@@ -17,7 +17,7 @@
1717
//!
1818
//! ```toml
1919
//! [dependencies]
20-
//! libunftp = "0.20.3"
20+
//! libunftp = "0.21.0"
2121
//! unftp-sbe-fs = "0.2.0"
2222
//! tokio = { version = "1", features = ["full"] }
2323
//! ```

0 commit comments

Comments
 (0)