From ac72797d1f723a98cdca850c742a6497ae0ed72f Mon Sep 17 00:00:00 2001 From: "Tony Arcieri (iqlusion)" Date: Tue, 13 Jul 2021 06:35:53 -0700 Subject: [PATCH] yubikey v0.4.2 (#291) --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- src/lib.rs | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c63eb4..54c3414 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ 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.4.2 (2021-07-13) +### Added +- Make `yubikey::Buffer` a pub type ([#290]) + +### Changed +- Have `YubiKey::block_puk` take `&mut self` as argument ([#289]) + +[#289]: https://github.com/iqlusioninc/yubikey.rs/pull/289 +[#290]: https://github.com/iqlusioninc/yubikey.rs/pull/290 + ## 0.4.1 (2021-07-12) ### Changed - Rename `SettingValue` to `Setting` ([#286]) diff --git a/Cargo.lock b/Cargo.lock index 11d00d1..95d0a80 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -964,7 +964,7 @@ dependencies = [ [[package]] name = "yubikey" -version = "0.4.1" +version = "0.4.2" dependencies = [ "chrono", "cookie-factory", diff --git a/Cargo.toml b/Cargo.toml index 9ba9cb6..fd381f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yubikey" -version = "0.4.1" # Also update html_root_url in lib.rs when bumping this +version = "0.4.2" # Also update html_root_url in lib.rs when bumping this 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/src/lib.rs b/src/lib.rs index 550526e..b8b3f50 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -131,7 +131,7 @@ #![cfg_attr(docsrs, feature(doc_cfg))] #![doc( html_logo_url = "https://raw.githubusercontent.com/iqlusioninc/yubikey.rs/main/img/logo.png", - html_root_url = "https://docs.rs/yubikey/0.4.1" + html_root_url = "https://docs.rs/yubikey/0.4.2" )] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms, trivial_casts, unused_qualifications)]