aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2017-03-09 18:43:40 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2017-03-09 17:43:40 -0500
commite9dbbd8d300ee2326382af775e58aac8f124814c (patch)
tree309323e2421a9cf6cf9c221e63e0a9a963859802
parent20fe2bedd9484d0e6efaa9c2ced95b527a2b0396 (diff)
downloadcryptography-e9dbbd8d300ee2326382af775e58aac8f124814c.tar.gz
cryptography-e9dbbd8d300ee2326382af775e58aac8f124814c.tar.bz2
cryptography-e9dbbd8d300ee2326382af775e58aac8f124814c.zip
document that we're not building universal wheels now (#3436)
Also updates the doing a release documentation
-rw-r--r--CHANGELOG.rst3
-rw-r--r--docs/doing-a-release.rst11
2 files changed, 7 insertions, 7 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 363e7703..9b9e10ef 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -8,6 +8,9 @@ Changelog
* Added support for Python 3.6.
* Windows and macOS wheels now link against OpenSSL 1.1.0.
+* macOS wheels are no longer universal. This change significantly shrinks the
+ size of the wheels. Users on macOS 32-bit Python (if there are any) should
+ migrate to 64-bit or build their own packages.
* Changed ASN.1 dependency from ``pyasn1`` to ``asn1crypto`` resulting in a
general performance increase when encoding/decoding ASN.1 structures. Also,
the ``pyasn1_modules`` test dependency is no longer required.
diff --git a/docs/doing-a-release.rst b/docs/doing-a-release.rst
index 0feb59bb..8e9222e0 100644
--- a/docs/doing-a-release.rst
+++ b/docs/doing-a-release.rst
@@ -13,17 +13,14 @@ installed before performing the release. If they do not:
Upgrading Windows
~~~~~~~~~~~~~~~~~
-Run the ``openssl-release`` Jenkins job, then copy the resulting artifacts to
-the Windows builders and unzip them in the root of the file system.
+Run the ``openssl-release-1.1`` Jenkins job, then copy the resulting artifacts
+to the Windows builders and unzip them in the root of the file system.
Upgrading OS X
~~~~~~~~~~~~~~
-``brew update`` and then ``brew upgrade openssl --universal --build-bottle`` to
-build a universal library (32-bit and 64-bit) compatible with all Intel Macs.
-This can be confirmed by using
-``lipo -info /usr/local/opt/openssl/lib/libssl.dylib`` to see the available
-architectures.
+``brew update`` and then ``brew upgrade openssl@1.1 --build-bottle`` to
+install a 64-bit only library compatible with all Intel Macs.
Bumping the version number
--------------------------