From d1bf843944313e86b276b0004d152ae59a7fb9ad Mon Sep 17 00:00:00 2001 From: Dain Nilsson Date: Mon, 21 Aug 2023 14:49:15 +0200 Subject: [PATCH] Prepare 5.2.0. --- NEWS | 8 ++++++-- man/ykman.1 | 9 ++++++--- pyproject.toml | 2 +- ykman/__init__.py | 2 +- 4 files changed, 14 insertions(+), 7 deletions(-) diff --git a/NEWS b/NEWS index ba35d9b8..6c7e0644 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,10 @@ -* Version 5.2.0 (unreleased) - * PIV Support for compressed certificates. +* Version 5.2.0 (released 2023-08-21) + * PIV: Support for compressed certificates. * OpenPGP: Use InvalidPinError for wrong PIN. + * Add YubiHSM Auth application support. + * Improved API documentation. + * Scripting: Add name attribute to device. + * Bugfix: PIV: don't throw InvalidPasswordError on malformed PEM private key. * Version 5.1.1 (released 2023-04-27) ** Bugfix: PIV: string representation of SLOT caused infinite loop on Python <3.11. diff --git a/man/ykman.1 b/man/ykman.1 index 8994ff64..4b05c3a0 100644 --- a/man/ykman.1 +++ b/man/ykman.1 @@ -1,4 +1,4 @@ -.TH YKMAN "1" "April 2023" "ykman 5.1.1" "User Commands" +.TH YKMAN "1" "August 2023" "ykman 5.2.0" "User Commands" .SH NAME ykman \- YubiKey Manager (ykman) .SH SYNOPSIS @@ -49,6 +49,9 @@ enable or disable applications fido manage the FIDO applications .TP +hsmauth +manage the YubiHSM Auth application +.TP oath manage the OATH application .TP @@ -66,6 +69,6 @@ List connected YubiKeys, only output serial number: .PP $ ykman list --serials .PP -Show information about YubiKey with serial number 0123456: +Show information about YubiKey with serial number 123456: .PP -$ ykman --device 0123456 info +$ ykman --device 123456 info diff --git a/pyproject.toml b/pyproject.toml index 6bd7c0d3..0765b7a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "yubikey-manager" -version = "5.2.0-dev.0" +version = "5.2.0" description = "Tool for managing your YubiKey configuration." authors = ["Dain Nilsson "] license = "BSD" diff --git a/ykman/__init__.py b/ykman/__init__.py index ea11c512..44f2569b 100644 --- a/ykman/__init__.py +++ b/ykman/__init__.py @@ -25,4 +25,4 @@ # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # POSSIBILITY OF SUCH DAMAGE. -__version__ = "5.2.0-dev.0" +__version__ = "5.2.0"