From 3580c45f71816ac700b9ef73ef22117a6f55245a Mon Sep 17 00:00:00 2001 From: "Tony Arcieri (iqlusion)" Date: Sat, 30 Jan 2021 07:47:39 -0800 Subject: [PATCH] yubikey-piv v0.2.0 (#220) --- CHANGELOG.md | 14 ++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- cli/Cargo.toml | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08309f9..754d20e 100644 --- a/CHANGELOG.md +++ b/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.2.0 (2021-01-30) +### Changed +- Bump `der-parser` to v5.0 ([#194]) +- Improve self-signed certificates ([#207]) +- Bump `x509-parser` to v0.9 ([#208]) +- Bump elliptic-curve to 0.8. Also requires bumping p256 and p384 ([#208]) +- Bump MSRV to 1.46+ ([#208]) +- Bump `pbkdf2` dependency to v0.7 ([#219]) + +[#194]: https://github.com/iqlusioninc/yubikey-piv.rs/pull/194 +[#207]: https://github.com/iqlusioninc/yubikey-piv.rs/pull/207 +[#208]: https://github.com/iqlusioninc/yubikey-piv.rs/pull/208 +[#219]: https://github.com/iqlusioninc/yubikey-piv.rs/pull/219 + ## 0.1.0 (2020-10-19) ### Added - `Certificate::generate_self_signed` ([#80]) diff --git a/Cargo.lock b/Cargo.lock index daa9676..106f9ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1106,7 +1106,7 @@ dependencies = [ [[package]] name = "yubikey-piv" -version = "0.1.0" +version = "0.2.0" dependencies = [ "chrono", "cookie-factory", diff --git a/Cargo.toml b/Cargo.toml index 5a9b82b..5cad775 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yubikey-piv" -version = "0.1.0" # Also update html_root_url in lib.rs when bumping this +version = "0.2.0" # Also update html_root_url in lib.rs when bumping this description = """ Pure Rust host-side driver for the YubiKey Personal Identity Verification (PIV) application providing general-purpose public-key signing and encryption diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 01231b4..fff2583 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -22,4 +22,4 @@ sha2 = "0.9" subtle-encoding = "0.5" termcolor = "1" x509-parser = "0.9" -yubikey-piv = { version = "0.1", path = ".." } +yubikey-piv = { version = "0.2", path = ".." }