From 0a36a37ae34aaf05a8e25d2b7a961c313028f0db Mon Sep 17 00:00:00 2001 From: "Tony Arcieri (iqlusion)" Date: Wed, 10 Aug 2022 17:41:26 -0600 Subject: [PATCH] yubikey v0.6.0 (#403) --- CHANGELOG.md | 23 +++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- cli/Cargo.toml | 2 +- 4 files changed, 26 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb7ae3c..724cf8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,29 @@ 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.6.0 (2022-08-10) +### Changed +- 2021 edition upgrade ([#343]) +- RustCrypto crate upgrades; MSRV 1.57 ([#378]) + - `des` v0.8 + - `elliptic-curve` v0.12 + - `hmac` v0.12 + - `num-bigint-dig` v0.8 + - `pbkdf2` v0.11 + - `p256` v0.11 + - `p384` v0.11 + - `rsa` v0.6 + - `sha1` v0.10 (replacing `sha-1`) + - `sha2` v0.10 +- Bump `uuid` to v1.0 ([#376]) +- Bump `der-parser` to v8.0 ([#402]) +- Bump `x509-parser` to v0.14 ([#402]) + +[#343]: https://github.com/iqlusioninc/yubikey.rs/pull/343 +[#376]: https://github.com/iqlusioninc/yubikey.rs/pull/376 +[#378]: https://github.com/iqlusioninc/yubikey.rs/pull/378 +[#402]: https://github.com/iqlusioninc/yubikey.rs/pull/402 + ## 0.5.0 (2021-11-21) ### Changed - Update `rsa` dependency to 0.5 ([#315]) diff --git a/Cargo.lock b/Cargo.lock index a5f8486..91653cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1351,7 +1351,7 @@ dependencies = [ [[package]] name = "yubikey" -version = "0.6.0-pre" +version = "0.6.0" dependencies = [ "chrono", "cookie-factory", diff --git a/Cargo.toml b/Cargo.toml index 610b629..3a33088 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yubikey" -version = "0.6.0-pre" # Also update html_root_url in lib.rs when bumping this +version = "0.6.0" description = """ Pure Rust cross-platform host-side driver for YubiKey devices from Yubico with support for hardware-backed public-key decryption and digital signatures using diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 644744f..8ff6cbd 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -23,4 +23,4 @@ sha2 = "0.9" subtle-encoding = "0.5" termcolor = "1" x509-parser = "0.12" -yubikey = { version = "=0.6.0-pre", path = ".." } +yubikey = { version = "0.6", path = ".." }