aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.rst2
-rw-r--r--docs/installation.rst4
-rw-r--r--src/cryptography/hazmat/bindings/openssl/binding.py2
3 files changed, 5 insertions, 3 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 4231d2b6..a8ef5d22 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -8,6 +8,8 @@ Changelog
.. note:: This version is not yet released and is under active development.
+* Deprecated support for OpenSSL 1.0.1. Support will be removed in
+ ``cryptography`` 2.9.
* We now ship ``manylinux2010`` wheels in addition to our ``manylinux1``
wheels.
diff --git a/docs/installation.rst b/docs/installation.rst
index 7118cb1e..2c83f33a 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -32,8 +32,8 @@ OpenSSL releases:
* ``OpenSSL 1.1.1-latest``
.. warning::
- Cryptography 2.4 has deprecated support for OpenSSL 1.0.1.
-
+ OpenSSL 1.0.1 is no longer supported by the OpenSSL project. Cryptography
+ will drop support for it in the next release.
Building cryptography on Windows
--------------------------------
diff --git a/src/cryptography/hazmat/bindings/openssl/binding.py b/src/cryptography/hazmat/bindings/openssl/binding.py
index ca4e33fa..97405162 100644
--- a/src/cryptography/hazmat/bindings/openssl/binding.py
+++ b/src/cryptography/hazmat/bindings/openssl/binding.py
@@ -158,7 +158,7 @@ def _verify_openssl_version(lib):
):
warnings.warn(
"OpenSSL version 1.0.1 is no longer supported by the OpenSSL "
- "project, please upgrade. A future version of cryptography will "
+ "project, please upgrade. The next version of cryptography will "
"drop support for it.",
utils.CryptographyDeprecationWarning
)