chore: release 0.5.0#85
Merged
Merged
Conversation
Assisted-by: ClaudeCode:claude-opus-4.8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 AI text below 🤖
Bumps the version to
0.5.0and promotes the package from Alpha to Beta (Development Status :: 4 - Beta).Changelog:
Version 0.5.0
Feature release adding four new bundled plugins and the backend collection loops.
✨ Features
astplugin (feat: add ast plugin to read a global literal from a Python file #81) — read a module-level global by name from a Python file viaast.literal_eval, without importing it. Values keep their Python shape, so list/table fields can be filled directly (not just strings).pin_installedplugin (feat: add pin_installed plugin for build-time version pinning #80) — pindependenciesto build-environment versions using templates like"torch==x.x.*"(x= installed release component,x+N, trailing*). Implementsdynamic_wheel(dependencies are Dynamic in the SDist) andget_requires_for_dynamic_metadata(the bare package names).from_fileplugin (feat: add from_file plugin for filling fields from files #82) — fill a field from a file: stripped contents for a string field, requirements.txt-style lines for a list field, or a dotted key (optional-dependencies.test) for a table field, one entry per key. pip option lines (-r, …) are a hard error.loader.pynow providesget_requires_for_dynamic_metadata(entries)anddynamic_wheel_fields(entries), so backends get the METADATA 2.2 dynamic set and extra build requirements from one place. Both load providers fresh, keepingdynamic_wheelstateless.📚 Docs
Full Changelog: v0.4.0...v0.5.0