From 32105d0bcb26c4e9797a68c0a3a8b27e234a48ac Mon Sep 17 00:00:00 2001 From: Mingwei Zhang Date: Fri, 26 Jan 2024 22:06:58 -0800 Subject: [PATCH] 0.15.11 release --- CHANGELOG.md | 20 ++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0fd1d8..a9dba2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,26 @@ All notable changes to this project will be documented in this file. +## v0.15.11 - 2024-01-27 + +### Library changes + +- switch to `rustls` as the default TLS backend +- add `oneio::download_with_retry` function to allow retrying download +- add `oneio::get_sha256_digest` function to library to calculate SHA256 digest of a file + +### CLI changes + +- add `oneio digest FILE` command to calculate file SHA256 digest + +### Misc + +- cleaned up the feature flags + - removed `no-cache` and `vendored-openssl` flags + - removed `openssl` optional dependency + - add `digest` feature flag to allow calculating SHA256 digest of a file, enabled by default +- update README.md to reflect the recent changes + ## v0.15.10 - 2024-01-26 ### Hot fix diff --git a/Cargo.toml b/Cargo.toml index 4837711..85184bf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oneio" -version = "0.15.10" +version = "0.15.11" authors = ["Mingwei Zhang "] edition = "2021" readme = "README.md"