Skip to content

Commit f7e6a4d

Browse files
authored
23.0.0 version bump (#1175)
1 parent 3052995 commit f7e6a4d

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 1 deletion
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-
22.2.0 (UNRELEASED)
7+
23.0.0 (2023-01-01)
88
-------------------
99

1010
Backward-incompatible changes:
@@ -19,6 +19,7 @@ Changes:
1919
- Add ``OpenSSL.SSL.X509StoreFlags.PARTIAL_CHAIN`` constant to allow for users
2020
to perform certificate verification on partial certificate chains.
2121
`#1166 <https://github.com/pyca/pyopenssl/pull/1166>`_
22+
- ``cryptography`` maximum version has been increased to 39.0.x.
2223

2324
22.1.0 (2022-09-25)
2425
-------------------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def find_meta(meta):
9797
package_dir={"": "src"},
9898
install_requires=[
9999
# Fix cryptographyMinimum in tox.ini when changing this!
100-
"cryptography>=38.0.0,<39",
100+
"cryptography>=38.0.0,<40",
101101
],
102102
extras_require={
103103
"test": ["flaky", "pretend", "pytest>=3.0.1"],

src/OpenSSL/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
"__version__",
1818
]
1919

20-
__version__ = "22.2.0.dev"
20+
__version__ = "23.0.0"
2121

2222
__title__ = "pyOpenSSL"
2323
__uri__ = "https://pyopenssl.org/"
2424
__summary__ = "Python wrapper module around the OpenSSL library"
2525
__author__ = "The pyOpenSSL developers"
2626
__email__ = "[email protected]"
2727
__license__ = "Apache License, Version 2.0"
28-
__copyright__ = "Copyright 2001-2022 {0}".format(__author__)
28+
__copyright__ = "Copyright 2001-2023 {0}".format(__author__)

0 commit comments

Comments
 (0)