Skip to content

Commit d024506

Browse files
authored
bump version (#1219)
1 parent 4d0dc7a commit d024506

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Changelog
44
Versions are year-based with a strict backward-compatibility policy.
55
The third digit is only for regressions.
66

7-
23.2.0 (UNRELEASED)
7+
23.2.0 (2023-05-30)
88
-------------------
99

1010
Backward-incompatible changes:
@@ -19,6 +19,7 @@ Deprecations:
1919
Changes:
2020
^^^^^^^^
2121

22+
- ``cryptography`` maximum version has been increased to 41.0.x.
2223
- Invalid versions are now rejected in ``OpenSSL.crypto.X509Req.set_version``.
2324
- Added ``X509VerificationCodes`` to ``OpenSSL.SSL``.
2425
`#1202 <https://github.com/pyca/pyopenssl/pull/1202>`_.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def find_meta(meta):
9999
install_requires=[
100100
# Fix cryptographyMinimum in tox.ini when changing this!
101101
# 40.0.0 and .1 are missing X509_V_* constants that we re-export.
102-
"cryptography>=38.0.0,<41,!=40.0.0,!=40.0.1",
102+
"cryptography>=38.0.0,<42,!=40.0.0,!=40.0.1",
103103
],
104104
extras_require={
105105
"test": ["flaky", "pretend", "pytest>=3.0.1"],

src/OpenSSL/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"__version__",
1818
]
1919

20-
__version__ = "23.2.0.dev"
20+
__version__ = "23.2.0"
2121

2222
__title__ = "pyOpenSSL"
2323
__uri__ = "https://pyopenssl.org/"

0 commit comments

Comments
 (0)