Fix/improve changelog formatting in the docs
This commit is contained in:
+15
-2
@@ -55,9 +55,10 @@ _5 July 2022_
|
||||
- ✨ You can now run cibuildwheel on Podman, as an alternate container engine to Docker (which remains the default). This is useful in environments where a Docker daemon isn't available, for example, it can be run inside a Docker container, or without root access. To use Podman, set the [`CIBW_CONTAINER_ENGINE`](https://cibuildwheel.readthedocs.io/en/stable/options/#container-engine) option. (#966)
|
||||
- ✨ Adds support for building `py3-none-{platform}` wheels. This works the same as ABI3 - wheels won't be rebuilt, but tests will still be run across all selected versions of Python.
|
||||
|
||||
> These wheels contain native extension code, but don't use the Python APIs. Typically, they're bridged to Python using a FFI module like [ctypes](https://docs.python.org/3/library/ctypes.html) or [cffi](https://cffi.readthedocs.io/en/latest/). Because they don't use Python ABI, the wheels are more compatible - they work across many Python versions.
|
||||
These wheels contain native extension code, but don't use the Python APIs. Typically, they're bridged to Python using a FFI module like [ctypes](https://docs.python.org/3/library/ctypes.html) or [cffi](https://cffi.readthedocs.io/en/latest/). Because they don't use Python ABI, the wheels are more compatible - they work across many Python versions.
|
||||
|
||||
Check out this [example ctypes project](https://github.com/joerick/python-ctypes-package-sample) to see an example of how it works. (#1151)
|
||||
|
||||
Check out this [example ctypes project](https://github.com/joerick/python-ctypes-package-sample) to see an example of how it works. (#1151)
|
||||
- 🛠 cibuildwheel will now error if multiple builds in a single run produce the same wheel filename, as this indicates a misconfiguration. (#1152)
|
||||
- 📚 A few docs improvements and updates to keep things up-to-date.
|
||||
|
||||
@@ -742,6 +743,18 @@ _31 March 2017_
|
||||
|
||||
- 🌟 First public release!
|
||||
|
||||
<style>
|
||||
|
||||
/* improve list formatting to help separate items */
|
||||
|
||||
.rst-content li {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.rst-content .section ol li>p:only-child, .rst-content .section ol li>p:only-child:last-child, .rst-content .section ul li>p:only-child, .rst-content .section ul li>p:only-child:last-child, .rst-content .toctree-wrapper ol li>p:only-child, .rst-content .toctree-wrapper ol li>p:only-child:last-child, .rst-content .toctree-wrapper ul li>p:only-child, .rst-content .toctree-wrapper ul li>p:only-child:last-child, .rst-content section ol li>p:only-child, .rst-content section ol li>p:only-child:last-child, .rst-content section ul li>p:only-child, .rst-content section ul li>p:only-child:last-child {
|
||||
margin-bottom: 12px
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
// undo the scrollTop that the theme did on this page, as there are loads
|
||||
// of toc entries and it's disorientating.
|
||||
|
||||
Reference in New Issue
Block a user