summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2023-03-24 00:54:34 -0400
committerGitHub <noreply@github.com>2023-03-24 12:54:34 +0800
commit240ae6fd46ab2752148136ce5855e5e975adc96b (patch)
tree62426625be6f6854fb21341706ffac1f7cba9cf5
parentcac747892be07a06d0315917fc72cfd06d10e471 (diff)
downloadpyopenssl-git-240ae6fd46ab2752148136ce5855e5e975adc96b.tar.gz
23.1.0 version bump (#1196)23.1.0
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--CHANGELOG.rst3
-rw-r--r--setup.py2
-rw-r--r--src/OpenSSL/version.py2
4 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a16af90..e00ef74 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -16,8 +16,8 @@ jobs:
- {VERSION: "3.9", TOXENV: "py39"}
- {VERSION: "3.10", TOXENV: "py310"}
- {VERSION: "3.11", TOXENV: "py311"}
- - {VERSION: "pypy-3.7", TOXENV: "pypy3"}
- {VERSION: "pypy-3.8", TOXENV: "pypy3"}
+ - {VERSION: "pypy-3.9", TOXENV: "pypy3"}
- {VERSION: "3.11", TOXENV: "py311-useWheel", OS: "windows-2022" }
# -cryptographyMain
- {VERSION: "3.6", TOXENV: "py36-cryptographyMain", OS: "ubuntu-20.04"}
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 7842545..f7118eb 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -4,7 +4,7 @@ Changelog
Versions are year-based with a strict backward-compatibility policy.
The third digit is only for regressions.
-23.1.0 (UNRELEASED)
+23.1.0 (2023-03-24)
-------------------
Backward-incompatible changes:
@@ -16,6 +16,7 @@ Deprecations:
Changes:
^^^^^^^^
+- ``cryptography`` maximum version has been increased to 40.0.x.
- Add ``OpenSSL.SSL.Connection.DTLSv1_get_timeout`` and ``OpenSSL.SSL.Connection.DTLSv1_handle_timeout``
to support DTLS timeouts `#1180 <https://github.com/pyca/pyopenssl/pull/1180>`_.
diff --git a/setup.py b/setup.py
index 0ccbbbd..42bf2c0 100644
--- a/setup.py
+++ b/setup.py
@@ -98,7 +98,7 @@ if __name__ == "__main__":
package_dir={"": "src"},
install_requires=[
# Fix cryptographyMinimum in tox.ini when changing this!
- "cryptography>=38.0.0,<40",
+ "cryptography>=38.0.0,<41",
],
extras_require={
"test": ["flaky", "pretend", "pytest>=3.0.1"],
diff --git a/src/OpenSSL/version.py b/src/OpenSSL/version.py
index 27cd1fb..78ff8bb 100644
--- a/src/OpenSSL/version.py
+++ b/src/OpenSSL/version.py
@@ -17,7 +17,7 @@ __all__ = [
"__version__",
]
-__version__ = "23.1.0.dev"
+__version__ = "23.1.0"
__title__ = "pyOpenSSL"
__uri__ = "https://pyopenssl.org/"