From 2e5139b237a63f50267b18e24a99d79d794c7533 Mon Sep 17 00:00:00 2001 From: "Tony Arcieri (iqlusion)" Date: Mon, 14 Nov 2022 18:17:02 -0700 Subject: [PATCH] yubikey-cli v0.7.0 (#446) --- Cargo.lock | 2 +- cli/CHANGELOG.md | 14 ++++++++++++++ cli/Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4647993..3c10e34 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1294,7 +1294,7 @@ dependencies = [ [[package]] name = "yubikey-cli" -version = "0.6.0" +version = "0.7.0" dependencies = [ "base16ct", "clap", diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 81d2ba1..a389e98 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.7.0 (2022-11-14) +### Changed +- Bump `clap` to v4.0 ([#438]) +- Bump `x509-parser` to v0.14 ([#441]) +- Switch from `lazy_static` to `once_cell` ([#442]) +- Switch from `subtle-encoding` to `base16ct` ([#443]) +- Bump `yubikey` dependency to v0.7 ([#444]) + +[#438]: https://github.com/iqlusioninc/yubikey.rs/pull/438 +[#441]: https://github.com/iqlusioninc/yubikey.rs/pull/441 +[#442]: https://github.com/iqlusioninc/yubikey.rs/pull/442 +[#443]: https://github.com/iqlusioninc/yubikey.rs/pull/443 +[#444]: https://github.com/iqlusioninc/yubikey.rs/pull/444 + ## 0.6.0 (2022-08-10) ### Changed - 2021 edition upgrade; MSRV 1.57 ([#343]) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 5b14fe0..78937a3 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yubikey-cli" -version = "0.6.0" +version = "0.7.0" description = """ Command-line interface for performing encryption and signing using RSA/ECC keys stored on YubiKey devices.