diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3cfae0bd45da..bb9bbe59e15b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -16,8 +16,8 @@ Changelog deprecated in version 2.0, but had an extended deprecation timeline due to usage. Any remaining users should transition to ``sign`` and ``verify``. * Deprecated OpenSSL 1.1.0 support. OpenSSL 1.1.0 is no longer supported by - the OpenSSL project. Support for compiling with OpenSSL 1.1.0 will be - removed in a future ``cryptography`` release. + the OpenSSL project. The next release of ``cryptography`` will be the last + to support compiling with OpenSSL 1.1.0. * Deprecated Python 3.6 support. Python 3.6 is no longer supported by the Python core team. Support for Python 3.6 will be removed in a future ``cryptography`` release. diff --git a/src/cryptography/hazmat/bindings/openssl/binding.py b/src/cryptography/hazmat/bindings/openssl/binding.py index 21e1b71f32e4..a6fbc946d827 100644 --- a/src/cryptography/hazmat/bindings/openssl/binding.py +++ b/src/cryptography/hazmat/bindings/openssl/binding.py @@ -196,8 +196,8 @@ def _verify_openssl_version(lib): ): warnings.warn( "OpenSSL version 1.1.0 is no longer supported by the OpenSSL " - "project, please upgrade. A future version of cryptography will " - "drop support for it.", + "project, please upgrade. The next release of cryptography will " + "be the last to support compiling with OpenSSL 1.1.0.", utils.DeprecatedIn37, )