From de987ce48ccfeb1abca41efa23b2bf73ec704f74 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Tue, 9 Jun 2026 15:20:07 -0700 Subject: [PATCH] 48.0.1 version bump and changelog (#14996) --- CHANGELOG.rst | 7 +++++++ pyproject.toml | 4 ++-- src/cryptography/__about__.py | 2 +- vectors/cryptography_vectors/__about__.py | 2 +- vectors/pyproject.toml | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5fbcdabb29f5..61dcaebcbceb 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,13 @@ Changelog ========= +.. _v48-0-1: + +48.0.1 - 2026-06-09 +~~~~~~~~~~~~~~~~~~~ + +* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 4.0.1. + .. _v48-0-0: 48.0.0 - 2026-05-04 diff --git a/pyproject.toml b/pyproject.toml index e78d4a3d405b..f9d05bb5dab2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ build-backend = "maturin" [project] name = "cryptography" -version = "48.0.0" +version = "48.0.1" authors = [ { name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org" }, ] @@ -75,7 +75,7 @@ dev = [ ] nox = ["nox[uv] >=2024.04.15"] test = [ - "cryptography_vectors==48.0.0", + "cryptography_vectors==48.0.1", "pytest >=7.4.0", "pytest-benchmark >=4.0", "pytest-cov >=2.10.1", diff --git a/src/cryptography/__about__.py b/src/cryptography/__about__.py index c81901c0ab9a..d9ec9bc836f3 100644 --- a/src/cryptography/__about__.py +++ b/src/cryptography/__about__.py @@ -10,7 +10,7 @@ "__version__", ] -__version__ = "48.0.0" +__version__ = "48.0.1" __author__ = "The Python Cryptographic Authority and individual contributors" diff --git a/vectors/cryptography_vectors/__about__.py b/vectors/cryptography_vectors/__about__.py index a45ac6f0f39e..3b32fd1f9a63 100644 --- a/vectors/cryptography_vectors/__about__.py +++ b/vectors/cryptography_vectors/__about__.py @@ -6,4 +6,4 @@ "__version__", ] -__version__ = "48.0.0" +__version__ = "48.0.1" diff --git a/vectors/pyproject.toml b/vectors/pyproject.toml index 3131baec738f..e1d91d1ea2bb 100644 --- a/vectors/pyproject.toml +++ b/vectors/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "uv_build" [project] name = "cryptography_vectors" -version = "48.0.0" +version = "48.0.1" authors = [ {name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"} ]