From 7e033c18a6ccc8cd5d7e3c6efdd1bc2bc9c6bce7 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Sat, 20 Jul 2024 09:55:35 -0700 Subject: [PATCH] reopen for 44 (#11312) --- CHANGELOG.rst | 8 ++++++++ pyproject.toml | 4 ++-- src/cryptography/__about__.py | 2 +- vectors/cryptography_vectors/__about__.py | 2 +- vectors/pyproject.toml | 2 +- 5 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1dcf602ee..ea0a11973 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Changelog ========= +.. _v44-0-0: + +44.0.0 - `main`_ +~~~~~~~~~~~~~~~~ + +.. note:: This version is not yet released and is under active development. + + .. _v43-0-0: 43.0.0 - 2024-07-20 diff --git a/pyproject.toml b/pyproject.toml index 5f1bcc75f..23338b2f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ build-backend = "maturin" [project] name = "cryptography" -version = "43.0.0" +version = "44.0.0.dev1" authors = [ {name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"} ] @@ -64,7 +64,7 @@ ssh = ["bcrypt >=3.1.5"] # All the following are used for our own testing. nox = ["nox"] test = [ - "cryptography_vectors==43.0.0", + "cryptography_vectors", "pytest >=6.2.0", "pytest-benchmark", "pytest-cov", diff --git a/src/cryptography/__about__.py b/src/cryptography/__about__.py index 4362aed1e..1cd38fc44 100644 --- a/src/cryptography/__about__.py +++ b/src/cryptography/__about__.py @@ -10,7 +10,7 @@ __all__ = [ "__version__", ] -__version__ = "43.0.0" +__version__ = "44.0.0.dev1" __author__ = "The Python Cryptographic Authority and individual contributors" diff --git a/vectors/cryptography_vectors/__about__.py b/vectors/cryptography_vectors/__about__.py index 8115d70aa..64b3ee956 100644 --- a/vectors/cryptography_vectors/__about__.py +++ b/vectors/cryptography_vectors/__about__.py @@ -6,4 +6,4 @@ __all__ = [ "__version__", ] -__version__ = "43.0.0" +__version__ = "44.0.0.dev1" diff --git a/vectors/pyproject.toml b/vectors/pyproject.toml index c2ae77d2c..eaa231e14 100644 --- a/vectors/pyproject.toml +++ b/vectors/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "cryptography_vectors" -version = "43.0.0" +version = "44.0.0.dev1" authors = [ {name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"} ]