From be67091a2f93c91741ba15f9ef2455cf84b312d6 Mon Sep 17 00:00:00 2001 From: Dain Nilsson Date: Fri, 26 Jun 2026 09:56:08 +0200 Subject: [PATCH 1/2] Update version and NEWS --- NEWS | 4 ++++ pyproject.toml | 2 +- yubihsm/__init__.py | 3 ++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 7aab078..6858cc8 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +* Version 3.3.2 (released 2026-06-26) + ** Bumped supported dependency versions (eg. latest cryptography). + ** Dropped support for Python 3.9 (EoL). + * Version 3.1.1 (released 2025-06-24) ** Support for compressing X509 certificates before import. ** Simplified parsing of extensions in attestation certificates. diff --git a/pyproject.toml b/pyproject.toml index cf893a6..1092668 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "yubihsm" -version = "3.1.2-dev.0" +version = "3.1.2" description = "Library for communication with a YubiHSM 2 over HTTP or USB." authors = [{ name = "Dain Nilsson", email = "" }] readme = "README.adoc" diff --git a/yubihsm/__init__.py b/yubihsm/__init__.py index eab6786..a230cab 100644 --- a/yubihsm/__init__.py +++ b/yubihsm/__init__.py @@ -27,4 +27,5 @@ from .core import YubiHsm # noqa F401 -__version__ = "3.1.2-dev.0" +# TODO: Drop in next major, use importlib.metadata.version +__version__ = "3.1.2" From dbb3262a102a7b5311f1b995d371ca8e56deaf08 Mon Sep 17 00:00:00 2001 From: Dain Nilsson Date: Fri, 26 Jun 2026 10:31:44 +0200 Subject: [PATCH 2/2] Bump versions --- NEWS | 2 +- pyproject.toml | 2 +- yubihsm/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 6858cc8..d9cb4fa 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -* Version 3.3.2 (released 2026-06-26) +* Version 3.1.2 (released 2026-06-26) ** Bumped supported dependency versions (eg. latest cryptography). ** Dropped support for Python 3.9 (EoL). diff --git a/pyproject.toml b/pyproject.toml index 1092668..9af99d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "yubihsm" -version = "3.1.2" +version = "3.1.3-dev.0" description = "Library for communication with a YubiHSM 2 over HTTP or USB." authors = [{ name = "Dain Nilsson", email = "" }] readme = "README.adoc" diff --git a/yubihsm/__init__.py b/yubihsm/__init__.py index a230cab..13fb922 100644 --- a/yubihsm/__init__.py +++ b/yubihsm/__init__.py @@ -28,4 +28,4 @@ # TODO: Drop in next major, use importlib.metadata.version -__version__ = "3.1.2" +__version__ = "3.1.3-dev.0"