From ff57fc59a83df9a999e5d2cdc2e7c8cd0bc8edb5 Mon Sep 17 00:00:00 2001 From: Robby klein Gunnewiek Date: Wed, 1 Feb 2023 17:23:40 +0100 Subject: [PATCH] Release unftp version 0.14.1 (#145) --- CHANGELOG.md | 2 +- src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78bcbee..4597736 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## (TBD) unftp v0.14.1 +## 2023-02-01 unftp v0.14.1 - Upgraded dependencies including all crates from https://github.com/bolcom/libunftp The main change here is [caching of access tokens in the GCS backend](https://github.com/bolcom/libunftp/issues/384) diff --git a/src/main.rs b/src/main.rs index 714bb79..ce17a2e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -59,7 +59,7 @@ use unftp_sbe_gcs::options::AuthMethod; fn load_user_file( path: &str, ) -> Result> { - let mut f = fs::File::open(&path)?; + let mut f = fs::File::open(path)?; // The user file can be plaintext, gzipped, or gzipped+base64-encoded // The gzip-base64 format is useful for overcoming configmap size limits in Kubernetes