Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

23.0.0 version bump #1175

Merged
merged 1 commit into from Jan 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.rst
Expand Up @@ -4,7 +4,7 @@ Changelog
Versions are year-based with a strict backward-compatibility policy.
The third digit is only for regressions.

22.2.0 (UNRELEASED)
23.0.0 (2023-01-01)
-------------------

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

22.1.0 (2022-09-25)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -97,7 +97,7 @@ def find_meta(meta):
package_dir={"": "src"},
install_requires=[
# Fix cryptographyMinimum in tox.ini when changing this!
"cryptography>=38.0.0,<39",
"cryptography>=38.0.0,<40",
],
extras_require={
"test": ["flaky", "pretend", "pytest>=3.0.1"],
Expand Down
4 changes: 2 additions & 2 deletions src/OpenSSL/version.py
Expand Up @@ -17,12 +17,12 @@
"__version__",
]

__version__ = "22.2.0.dev"
__version__ = "23.0.0"

__title__ = "pyOpenSSL"
__uri__ = "https://pyopenssl.org/"
__summary__ = "Python wrapper module around the OpenSSL library"
__author__ = "The pyOpenSSL developers"
__email__ = "cryptography-dev@python.org"
__license__ = "Apache License, Version 2.0"
__copyright__ = "Copyright 2001-2022 {0}".format(__author__)
__copyright__ = "Copyright 2001-2023 {0}".format(__author__)