_24 June 2020_
- 🌟 Add [`CIBW_BEFORE_ALL`](https://cibuildwheel.pypa.io/en/stable/options/#before-all)
option, which lets you run a command on the build machine before any wheels
are built. This is especially useful when building on Linux, to `make`
something external to Python, or to `yum install` a dependency. (342)
- ✨ Added support for projects using pyproject.toml instead of setup.py
(360, 358)
- ✨ Added workaround to allow Python 3.5 on Windows to pull dependencies from
pyproject.toml. (358)
- 📚 Improved GitHub Actions examples and docs (354, 362)
- 🐛 Ensure pip wheel uses the specified package, and doesn't build a wheel
from PyPI (369)
- 🛠 Internal changes: using pathlib.Path, precommit hooks, testing
improvements.