Skip to content

Commit

Permalink
23.0.0 version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
alex committed Jan 2, 2023
1 parent 3052995 commit 56db97b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
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__)

0 comments on commit 56db97b

Please sign in to comment.