Skip to content

Commit 240ae6f

Browse files
authored
23.1.0 version bump (#1196)
1 parent cac7478 commit 240ae6f

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
- {VERSION: "3.9", TOXENV: "py39"}
1717
- {VERSION: "3.10", TOXENV: "py310"}
1818
- {VERSION: "3.11", TOXENV: "py311"}
19-
- {VERSION: "pypy-3.7", TOXENV: "pypy3"}
2019
- {VERSION: "pypy-3.8", TOXENV: "pypy3"}
20+
- {VERSION: "pypy-3.9", TOXENV: "pypy3"}
2121
- {VERSION: "3.11", TOXENV: "py311-useWheel", OS: "windows-2022" }
2222
# -cryptographyMain
2323
- {VERSION: "3.6", TOXENV: "py36-cryptographyMain", OS: "ubuntu-20.04"}

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.1.0 (UNRELEASED)
7+
23.1.0 (2023-03-24)
88
-------------------
99

1010
Backward-incompatible changes:
@@ -16,6 +16,7 @@ Deprecations:
1616
Changes:
1717
^^^^^^^^
1818

19+
- ``cryptography`` maximum version has been increased to 40.0.x.
1920
- Add ``OpenSSL.SSL.Connection.DTLSv1_get_timeout`` and ``OpenSSL.SSL.Connection.DTLSv1_handle_timeout``
2021
to support DTLS timeouts `#1180 <https://github.com/pyca/pyopenssl/pull/1180>`_.
2122

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def find_meta(meta):
9898
package_dir={"": "src"},
9999
install_requires=[
100100
# Fix cryptographyMinimum in tox.ini when changing this!
101-
"cryptography>=38.0.0,<40",
101+
"cryptography>=38.0.0,<41",
102102
],
103103
extras_require={
104104
"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.1.0.dev"
20+
__version__ = "23.1.0"
2121

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

0 commit comments

Comments
 (0)