- ✨ You can now specify a custom docker image using the `CIBW_MANYLINUX1_X86_64_IMAGE` and `CIBW_MANYLINUX1_I686_IMAGE` options. (46) - 🐛 Fixed a bug where cibuildwheel would download and build a package from PyPI(!) instead of building the package on the local machine. (51)
0.6.0
_9 October 2017_
- ✨ On the Linux build, the host filesystem is now accessible via `/host` (36) - 🐛 Fixed a bug where setup.py scripts would run the wrong version of Python when running subprocesses on Linux (35)
0.5.1
_10 September 2017_
- 🐛 Fixed a couple of bugs on Python 3. - ✨ Added experimental support for Mac builds on [Bitrise.io](https://www.bitrise.io)
0.5.0
_7 September 2017_
- ✨ `CIBW_ENVIRONMENT` added. You can now set environment variables for each build, even within the Docker container on Linux. This is a big one! (21) - ✨ `CIBW_BEFORE_BUILD` now runs in a system shell on all platforms. You can now do things like `CIBW_BEFORE_BUILD="cmd1 && cmd2"`. (32)
0.4.1
_14 August 2017_
- 🐛 Fixed a bug on Windows where subprocess' output was hidden (23) - 🐛 Fixed a bug on AppVeyor where logs would appear in the wrong order due to output buffering (24, thanks YannickJadoul!)
0.4.0
_23 July 2017_
- 🐛 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.