summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2021-09-29 06:56:51 +0800
committerGitHub <noreply@github.com>2021-09-28 18:56:51 -0400
commit51717970261d6283b681f5fa8347808409f0991d (patch)
treee96c444446e8e3e5d9de4c3c3053da533af4d202
parent487863c75c0139c1a2a8da65e10f9f40e1109fc5 (diff)
downloadpyopenssl-git-21.0.0.tar.gz
21.0.0 release (#1041)21.0.0
-rw-r--r--CHANGELOG.rst4
-rw-r--r--src/OpenSSL/version.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 85fb1c3..a4414f1 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -4,7 +4,7 @@ Changelog
Versions are year-based with a strict backward-compatibility policy.
The third digit is only for regressions.
-21.0.0 (UNRELEASED)
+21.0.0 (2020-09-28)
-------------------
Backward-incompatible changes:
@@ -23,6 +23,8 @@ Changes:
`#993 <https://github.com/pyca/pyopenssl/pull/993>`_
- Added ``OpenSSL.SSL.Context.set_min_proto_version`` and ``OpenSSL.SSL.Context.set_max_proto_version``
to set the minimum and maximum supported TLS version `#985 <https://github.com/pyca/pyopenssl/pull/985>`_.
+- Updated ``to_cryptography`` and ``from_cryptography`` methods to support an upcoming release of ``cryptography`` without raising deprecation warnings.
+ `#1030 <https://github.com/pyca/pyopenssl/pull/1030>`_
20.0.1 (2020-12-15)
-------------------
diff --git a/src/OpenSSL/version.py b/src/OpenSSL/version.py
index 2274aac..c6fcecb 100644
--- a/src/OpenSSL/version.py
+++ b/src/OpenSSL/version.py
@@ -17,7 +17,7 @@ __all__ = [
"__version__",
]
-__version__ = "21.0.0.dev"
+__version__ = "21.0.0"
__title__ = "pyOpenSSL"
__uri__ = "https://pyopenssl.org/"