From c92879e85569a242956a0c44b723b81f962eb1c9 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Thu, 1 Jan 2026 10:28:51 -0600 Subject: [PATCH] changelog and version bump for 1.6.2 --- CHANGELOG.rst | 5 +++++ pyproject.toml | 2 +- src/nacl/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a78bdc17..fba766f7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ Changelog ========= +1.6.2 (2026-01-01) +------------------ +* Updated ``libsodium`` to 1.0.20-stable (2025-12-31 build) to resolve + ``CVE-2025-69277``. + 1.6.1 (2025-11-10) ------------------ * The ``MAKE`` environment variable can now be used to specify the ``make`` diff --git a/pyproject.toml b/pyproject.toml index 34f8afaf..97aae1be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ dynamic = ["readme"] name = "PyNaCl" # Must be kept in sync with `src/nacl/__init__.py` -version = "1.6.1" +version = "1.6.2" authors = [ {name = "The PyNaCl developers", email = "cryptography-dev@python.org"} ] diff --git a/src/nacl/__init__.py b/src/nacl/__init__.py index 6ab2708e..83aaacf5 100644 --- a/src/nacl/__init__.py +++ b/src/nacl/__init__.py @@ -22,4 +22,4 @@ __uri__ = "https://github.com/pyca/pynacl/" # Must be kept in sync with `pyproject.toml` -__version__ = "1.6.1" +__version__ = "1.6.2"