v0.72.0
openclaw/wacliv0.72.0Jul 1, 2026by github-actions[bot]
AI Summary
This release introduces a new feature for Pixi Build that allows users to build packages from source without a dedicated manifest file by defining build metadata inline within the dependency TOML configuration.
Key Highlights
- Inline package definition for Pixi Build
- Simplifies building packages without a specific manifest file
- Allows setting `package.build_backend.name` directly in dependencies
New Features
- Inline package definition by @Hofer-Julian in #6428
Full Release Notes
### [0.72.0] - 2026-07-01
#### ✨ Highlights
This release brings an exciting new Pixi Build feature: inline package manifests.
If you want to build a package from source that didn't contain a Pixi Build manifest, that used to be pretty annoying.
Now you can simply set the metadata inline like this:
```toml
[dependencies]
rust-package = { git = "https://github.com/user/repo.git", package.build.backend.name = "pixi-build-rust" }
```
You can learn more about this feature in the docs: https://pixi.prefix.dev/v0.72.0/build/inline_packages/
#### Added
- Inline package definition by @Hofer-Julian in [#6428](https://github.com/prefix-dev/pixi/pull/6428)