Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
* Version 3.1.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.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "yubihsm"
version = "3.1.2-dev.0"
version = "3.1.3-dev.0"
description = "Library for communication with a YubiHSM 2 over HTTP or USB."
authors = [{ name = "Dain Nilsson", email = "<dain@yubico.com>" }]
readme = "README.adoc"
Expand Down
3 changes: 2 additions & 1 deletion yubihsm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.3-dev.0"
Loading