Skip to content

Commit ff57fc5

Browse files
authored
Release unftp version 0.14.1 (#145)
1 parent 8f71bff commit ff57fc5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## (TBD) unftp v0.14.1
3+
## 2023-02-01 unftp v0.14.1
44

55
- Upgraded dependencies including all crates from https://github.com/bolcom/libunftp
66
The main change here is [caching of access tokens in the GCS backend](https://github.com/bolcom/libunftp/issues/384)

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ use unftp_sbe_gcs::options::AuthMethod;
5959
fn load_user_file(
6060
path: &str,
6161
) -> Result<std::string::String, Box<dyn std::error::Error + Send + Sync + 'static>> {
62-
let mut f = fs::File::open(&path)?;
62+
let mut f = fs::File::open(path)?;
6363

6464
// The user file can be plaintext, gzipped, or gzipped+base64-encoded
6565
// The gzip-base64 format is useful for overcoming configmap size limits in Kubernetes

0 commit comments

Comments
 (0)