Skip to content

Commit

Permalink
bump version (#1219)
Browse files Browse the repository at this point in the history
  • Loading branch information
reaperhulk authored May 31, 2023
1 parent 4d0dc7a commit d024506
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Changelog
Versions are year-based with a strict backward-compatibility policy.
The third digit is only for regressions.

23.2.0 (UNRELEASED)
23.2.0 (2023-05-30)
-------------------

Backward-incompatible changes:
Expand All @@ -19,6 +19,7 @@ Deprecations:
Changes:
^^^^^^^^

- ``cryptography`` maximum version has been increased to 41.0.x.
- Invalid versions are now rejected in ``OpenSSL.crypto.X509Req.set_version``.
- Added ``X509VerificationCodes`` to ``OpenSSL.SSL``.
`#1202 <https://github.com/pyca/pyopenssl/pull/1202>`_.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def find_meta(meta):
install_requires=[
# Fix cryptographyMinimum in tox.ini when changing this!
# 40.0.0 and .1 are missing X509_V_* constants that we re-export.
"cryptography>=38.0.0,<41,!=40.0.0,!=40.0.1",
"cryptography>=38.0.0,<42,!=40.0.0,!=40.0.1",
],
extras_require={
"test": ["flaky", "pretend", "pytest>=3.0.1"],
Expand Down
2 changes: 1 addition & 1 deletion src/OpenSSL/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"__version__",
]

__version__ = "23.2.0.dev"
__version__ = "23.2.0"

__title__ = "pyOpenSSL"
__uri__ = "https://pyopenssl.org/"
Expand Down

0 comments on commit d024506

Please sign in to comment.