From ed104d1315329c858c69ef2dcf60d2b2f093da73 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sun, 23 Jul 2017 22:39:15 +0100 Subject: [PATCH] Update readme --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3c8f8707..932f05bb 100644 --- a/README.md +++ b/README.md @@ -241,11 +241,15 @@ Here are some repos that use cibuildwheel. Legal note ---------- -Since `cibuildwheel` runs the wheel through delocate or auditwheel, it will automatically bundle library dependencies. This is similar to static linking - it might have some licence implications. Check the license for any code you're pulling in to make sure that's allowed. +Since `cibuildwheel` runs the wheel through delocate or auditwheel, it will automatically bundle library dependencies. This is similar to static linking, so it might have some licence implications. Check the license for any code you're pulling in to make sure that's allowed. Changelog ========= +### 0.4.0 + +- Fixed a bug that was increasing the build time by building the wheel twice. This was a problem for large projects that have a long build time. If you're upgrading and you need the old behaviour, use `CIBW_BEFORE_BUILD={pip} install .`, or install exactly the dependencies you need in `CIBW_BEFORE_BUILD`. See #18. + ### 0.3.0 - Removed Python 2.6 support on Linux (#12)