Skip to content

Commit

Permalink
Prepare 5.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
dainnilsson committed Aug 21, 2023
1 parent 400f9d6 commit d1bf843
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
8 changes: 6 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
9 changes: 6 additions & 3 deletions man/ykman.1
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <dain@yubico.com>"]
license = "BSD"
Expand Down
2 changes: 1 addition & 1 deletion ykman/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit d1bf843

Please sign in to comment.