diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2017-05-20 13:23:15 -0700 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-05-20 13:23:15 -0700 |
commit | 2240ba2d9bf3d0bb81b30d2901304983f8a0983e (patch) | |
tree | 262926532456b932267644215da5357aaf78038e | |
parent | 6fcbebd8285c485f67840533008ac465fbf62535 (diff) | |
download | cryptography-2240ba2d9bf3d0bb81b30d2901304983f8a0983e.tar.gz cryptography-2240ba2d9bf3d0bb81b30d2901304983f8a0983e.tar.bz2 cryptography-2240ba2d9bf3d0bb81b30d2901304983f8a0983e.zip |
Dropped support for really old macOS (#3554)
* Dropped support for really old macOS
Fixes #3503
* literally, how does spelling
-rw-r--r-- | CHANGELOG.rst | 7 | ||||
-rw-r--r-- | docs/installation.rst | 3 |
2 files changed, 5 insertions, 5 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2961ead5..176ad3c0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,15 +6,16 @@ Changelog .. note:: This version is not yet released and is under active development. -* Add support for providing ``tag`` during - :class:`~cryptography.hazmat.primitives.ciphers.modes.GCM` finalization via - :meth:`~cryptography.hazmat.primitives.ciphers.AEADDecryptionContext.finalize_with_tag`. * **BACKWARDS INCOMPATIBLE:** Elliptic Curve signature verification no long returns ``True`` on success. This brings it in line with the interface's documentation, and our intent. The correct way to use :meth:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey.verify` has always been to check whether or not :class:`~cryptography.exceptions.InvalidSignature` was raised. +* **BACKWARDS INCOMPATIBLE:** Dropped support for macOS 10.7 and 10.8. +* Add support for providing ``tag`` during + :class:`~cryptography.hazmat.primitives.ciphers.modes.GCM` finalization via + :meth:`~cryptography.hazmat.primitives.ciphers.AEADDecryptionContext.finalize_with_tag`. * Fixed an issue preventing ``cryptography`` from compiling against LibreSSL 2.5.x. * Accessing an unrecognized extension marked critical on an X.509 object will diff --git a/docs/installation.rst b/docs/installation.rst index e56d66cf..9ee966aa 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -15,8 +15,7 @@ PyPy 2.6+ on these operating systems. * x86-64 CentOS 7.x, 6.4 * x86-64 FreeBSD 10 -* macOS 10.12 Sierra, 10.11 El Capitan, 10.10 Yosemite, 10.9 Mavericks, - 10.8 Mountain Lion, and 10.7 Lion +* macOS 10.12 Sierra, 10.11 El Capitan, 10.10 Yosemite, 10.9 Mavericks * x86-64 Ubuntu 12.04 LTS and Ubuntu 14.04 LTS * x86-64 Debian Wheezy (7.x), Jessie (8.x), and Debian Sid (unstable) * 32-bit and 64-bit Python on 64-bit Windows Server 2012 |