Skip to content

Commit

Permalink
chore: prepare for 0.9.0 (#714)
Browse files Browse the repository at this point in the history
Close #666.

Signed-off-by: Henry Schreiner <[email protected]>
  • Loading branch information
henryiii committed Apr 19, 2024
1 parent 30d5d83 commit 01e8215
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,16 @@ Included modules:
- `.cmake`: `CMake`/`CMaker` general interface for building code
- `.fileapi`: Interface for reading the CMake File API
- `.builder`: Generalized backend builder and related helpers
- `.settings`: The configuration system, reading from pyproject.toml, PEP 517

The build backend and plugins:

- `.build`: PEP 517 builder
- `.setuptools`: The setuptools Extension interface (and PEP 517 hooks)
- `.setuptools`: The setuptools Extension interface (and PEP 517 hooks) (will
likely be split out)
- `.setuptools.build_api`: Wrapper injecting build requirements
- `.settings`: The configuration system, reading from pyproject.toml, PEP 517
config, and envvars
- `.hatch`: The hatchling extension (will likely be split out) config, and
envvars

## Basic CMake usage

Expand Down Expand Up @@ -303,7 +308,8 @@ install(TARGETS cmake_example DESTINATION .)
### Backports

All backported standard library code is in `scikit_build_core._compat`, in a
module with the stdlib name.
module with the stdlib name. Ruff will ensure you use the backport instead of
the original module.

### Detecting the platform

Expand Down
54 changes: 54 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,59 @@
# Changelog

## Version 0.9.0

This version adds the ability to `inherit` in override tables, matching a
similar feature added to cibuildwheel 2.17's overrides. You can now write out
extra metadata to `@{SKBUILD_METADATA_DIR}`. A new Hatchling plugin is provided
as an experimental feature (will likely be made a separate package in the future
like the setuptools plugin).

Features:

- feat: Preserve additivity of `cmake.define` across `overrides` tables by
@stubbiali in #564
- feat: add metadata dir access by @henryiii in #702
- feat: experimental hatchling builder by @henryiii and @aryamanjeendgar in #637
- feat: vendor pyproject-metadata by @henryiii in #703

Fixes:

- fix!: exclude installed files if listed in exclude by @henryiii in #652
- fix: Make `.git_archival.txt` reproducible by @LecrisUT in #706
- fix: Use `cmake -E` capabilities instead of `cmake --version` by
@KyleFromNVIDIA in #675
- fix: ensure many/musl tags not selected by @henryiii in #698
- fix: purelib should set py3 tag if unset by @henryiii in #661
- fix: validate description for 0.9+ by @henryiii in #709
- fix: support bools in config settings by @henryiii in #712
- fix: always require pathspec by @henryiii in #711

API changes:

- feat(api): `extra_settings` for SettingsReader by @henryiii in #697
- refactor: `GetRequires` args changed by @henryiii in #699
- refactor: make `from_file` a little more powerful by @henryiii in #700
- refactor: metadata is part of the build backend by @henryiii in #708

Documentation:

- docs: `cmakelists.md` Windows `SOABI` suffix variable by @thewtex in #684
- docs: fix hatch init command by @thewtex in #677
- docs: fix install strip default by @henryiii in #681
- docs: improve `ninja.make-fallback` description in the README by @thewtex in
#676
- docs: mention printouts by @henryiii in #660

CI and testing:

- chore: Lower `pybind11` test dependency by @LecrisUT in #691
- chore: some cleanup from uv branch by @henryiii in #686
- ci: Fedora CI maintenance by @LecrisUT in #689
- ci: small additions by @henryiii in #694
- ci: some changes from uv job by @henryiii in #693
- tests: fix setuptools on Python 3.12 by @henryiii in #701
- fedora: Port downstream PR-49 by @LecrisUT in #678

## Version 0.8.2

This version fixes a few small issues related to configuration. The wheel tag is
Expand Down

0 comments on commit 01e8215

Please sign in to comment.