From 758d27061dfbd949fa10d76455f745e29a49b850 Mon Sep 17 00:00:00 2001 From: Dain Nilsson Date: Tue, 30 Jan 2024 10:55:35 +0100 Subject: [PATCH] Bump version number --- NEWS | 2 +- man/ykman.1 | 2 +- pyproject.toml | 2 +- version_info.txt.in | 4 ++-- ykman/__init__.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/NEWS b/NEWS index 774d532d..3b49abd5 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -* Version 5.3.0 (unreleased) +* Version 5.3.0 (released 2023-01-30) ** FIDO: Add new CLI commands for PIN management and authenticator config (force-change, set-min-length, toggle-always-uv, enable-ep-attestation). ** PIV: Support new key types on supported devices (RSA 3072/4096, Curve25519). diff --git a/man/ykman.1 b/man/ykman.1 index 0c5f31bd..a97e139f 100644 --- a/man/ykman.1 +++ b/man/ykman.1 @@ -1,4 +1,4 @@ -.TH YKMAN "1" "October 2023" "ykman 5.2.1" "User Commands" +.TH YKMAN "1" "January 2024" "ykman 5.3.0" "User Commands" .SH NAME ykman \- YubiKey Manager (ykman) .SH SYNOPSIS diff --git a/pyproject.toml b/pyproject.toml index c0b894e6..168e9132 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "yubikey-manager" -version = "5.3.0-dev.0" +version = "5.3.0" description = "Tool for managing your YubiKey configuration." authors = ["Dain Nilsson "] license = "BSD" diff --git a/version_info.txt.in b/version_info.txt.in index 8548d5af..b146fb1c 100644 --- a/version_info.txt.in +++ b/version_info.txt.in @@ -32,11 +32,11 @@ VSVersionInfo( [StringStruct('CompanyName', 'Yubico'), StringStruct('FileDescription', 'YubiKey Manager CLI'), StringStruct('FileVersion', '{VERSION}'), - StringStruct('LegalCopyright', 'Copyright (c) 2023 Yubico AB'), + StringStruct('LegalCopyright', 'Copyright (c) 2024 Yubico AB'), StringStruct('OriginalFilename', 'ykman.exe'), StringStruct('ProductName', 'YubiKey Manager'), StringStruct('ProductVersion', '{VERSION}')]) - ]), + ]), VarFileInfo([VarStruct('Translation', [1033, 1200])]) ] ) diff --git a/ykman/__init__.py b/ykman/__init__.py index d2157a70..16602903 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.3.0-dev.0" +__version__ = "5.3.0"