yubikey-piv v0.3.0 (#240)
This commit is contained in:
committed by
GitHub
parent
e230390e7e
commit
43dfc06875
@@ -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/),
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## 0.3.0 (2021-03-22)
|
||||||
|
### Added
|
||||||
|
- Typed structs for PIN-protected and admin metadata ([#223])
|
||||||
|
- `MgmKey::set_default`/`MgmKey::set_manual` methods ([#224])
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Have `Transaction::set_mgm_key` take touch requirement as bool ([#224])
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
- `MgmKey::set` method ([#224])
|
||||||
|
|
||||||
|
[#223]: https://github.com/iqlusioninc/yubikey-piv.rs/pull/223
|
||||||
|
[#224]: https://github.com/iqlusioninc/yubikey-piv.rs/pull/224
|
||||||
|
|
||||||
## 0.2.0 (2021-01-30)
|
## 0.2.0 (2021-01-30)
|
||||||
### Changed
|
### Changed
|
||||||
- Bump `der-parser` to v5.0 ([#194])
|
- Bump `der-parser` to v5.0 ([#194])
|
||||||
|
|||||||
Generated
+1
-1
@@ -1094,7 +1094,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "yubikey-piv"
|
name = "yubikey-piv"
|
||||||
version = "0.2.0"
|
version = "0.3.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"cookie-factory",
|
"cookie-factory",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "yubikey-piv"
|
name = "yubikey-piv"
|
||||||
version = "0.2.0" # Also update html_root_url in lib.rs when bumping this
|
version = "0.3.0" # Also update html_root_url in lib.rs when bumping this
|
||||||
description = """
|
description = """
|
||||||
Pure Rust host-side driver for the YubiKey Personal Identity Verification (PIV)
|
Pure Rust host-side driver for the YubiKey Personal Identity Verification (PIV)
|
||||||
application providing general-purpose public-key signing and encryption
|
application providing general-purpose public-key signing and encryption
|
||||||
|
|||||||
+1
-1
@@ -22,4 +22,4 @@ sha2 = "0.9"
|
|||||||
subtle-encoding = "0.5"
|
subtle-encoding = "0.5"
|
||||||
termcolor = "1"
|
termcolor = "1"
|
||||||
x509-parser = "0.9"
|
x509-parser = "0.9"
|
||||||
yubikey-piv = { version = "0.2", path = ".." }
|
yubikey-piv = { version = "0.3", path = ".." }
|
||||||
|
|||||||
+1
-1
@@ -123,7 +123,7 @@
|
|||||||
|
|
||||||
#![doc(
|
#![doc(
|
||||||
html_logo_url = "https://raw.githubusercontent.com/iqlusioninc/yubikey-piv.rs/main/img/logo.png",
|
html_logo_url = "https://raw.githubusercontent.com/iqlusioninc/yubikey-piv.rs/main/img/logo.png",
|
||||||
html_root_url = "https://docs.rs/yubikey-piv/0.1.0"
|
html_root_url = "https://docs.rs/yubikey-piv/0.3.0"
|
||||||
)]
|
)]
|
||||||
#![forbid(unsafe_code)]
|
#![forbid(unsafe_code)]
|
||||||
#![warn(
|
#![warn(
|
||||||
|
|||||||
Reference in New Issue
Block a user