Skip to content

Commit 715f4fc

Browse files
committed
Release 0.12.5
1 parent 5680517 commit 715f4fc

File tree

3 files changed

+44
-60
lines changed

3 files changed

+44
-60
lines changed

Cargo.lock

Lines changed: 35 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unftp"
3-
version = "0.12.4"
3+
version = "0.12.5"
44
authors = [
55
"Agoston Horvath <[email protected]>",
66
"Dávid Kosztka <[email protected]>",
@@ -27,19 +27,18 @@ path="crates/redislog"
2727
version="0.1.0"
2828

2929
[dependencies]
30-
async-trait = "0.1.41"
30+
async-trait = "0.1.42"
3131
clap = "2.33.3"
3232
futures = "0.3.12"
3333
http = "0.2.3"
34-
hyper = { version = "0.14.1", features = ["server", "http1"] }
34+
hyper = { version = "0.14.4", features = ["server", "http1"] }
3535
lazy_static = "1.4.0"
36-
libunftp = "0.16.0"
36+
libunftp = "0.16.1"
3737
prometheus = "0.11.0"
3838
slog = { version = "2.7.0", features = ["max_level_trace", "release_max_level_info"] }
3939
slog-async = "2.6.0"
40-
slog-term = "2.6.0"
41-
tokio = { version = "1.0.2", features = ["full"] }
42-
bytes = "1.0.1" # Added to resolve conflicts
40+
slog-term = "2.7.0"
41+
tokio = { version = "1.2.0", features = ["full"] }
4342

4443
[features]
4544
all = ["pam_auth", "rest_auth", "jsonfile_auth", "cloud_storage"]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,21 +37,21 @@ you can choose between a statically linked image (no PAM integration) or a dynam
3737
Linux (static, no PAM):
3838

3939
```sh
40-
curl -L https://github.com/bolcom/unFTP/releases/download/v0.12.4/unftp_x86_64-unknown-linux-musl \
40+
curl -L https://github.com/bolcom/unFTP/releases/download/v0.12.5/unftp_x86_64-unknown-linux-musl \
4141
| sudo tee /usr/local/bin/unftp > /dev/null && sudo chmod +x /usr/local/bin/unftp
4242
```
4343

4444
Linux (dynamic with PAM support):
4545

4646
```sh
47-
curl -L https://github.com/bolcom/unFTP/releases/download/v0.12.4/unftp_x86_64-unknown-linux-gnu \
47+
curl -L https://github.com/bolcom/unFTP/releases/download/v0.12.5/unftp_x86_64-unknown-linux-gnu \
4848
| sudo tee /usr/local/bin/unftp > /dev/null && sudo chmod +x /usr/local/bin/unftp
4949
```
5050

5151
macOS:
5252

5353
```sh
54-
curl -L https://github.com/bolcom/unFTP/releases/download/v0.12.4/unftp_x86_64-apple-darwin \
54+
curl -L https://github.com/bolcom/unFTP/releases/download/v0.12.5/unftp_x86_64-apple-darwin \
5555
| sudo tee /usr/local/bin/unftp > /dev/null && sudo chmod +x /usr/local/bin/unftp
5656
```
5757

0 commit comments

Comments
 (0)