release: prepare 1.1#70
Merged
Merged
Conversation
- Bump version to 1.1 (fz/__init__.py; pyproject reads it dynamically, _version.py is CI-stamped). - NEWS.md: cut the Unreleased section to "Version 1.1 (2026-06-15)" and open a fresh Unreleased. 1.1 collects: CLI argument aliases, calculator-discovery fixes, the fzd CLI execution fix, recursive directory-tree staging, fzd input-flag aliases, CLI hardening, and the worked skill examples + skill hardening. - README version badge 1.0 -> 1.1. - Skill docs: flip the "git main / next release" caveats to "fz >= 1.1" (fzd auto-discovery, recursive case-subdir staging, --calculators alias acceptance, fzd input-flag aliases, positional paths); bump install hints to funz-fz>=1.1 where a feature needs it; keep accurate "fz 1.0 only" notes for what changed. Does not cut the release: publishing to PyPI happens when a GitHub Release (tag 1.1) is published, triggering release.yml. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Repo-side prep for the fz 1.1 release by bumping the package version and aligning release notes + documentation to reference 1.1 behavior/features.
Changes:
- Bump
fz.__version__from1.0→1.1(setuptools dynamic version source). - Cut release notes by adding a Version 1.1 (2026-06-15) section and leaving a fresh Unreleased header.
- Update README badge and skill/docs/examples to state fz ≥ 1.1 requirements (notably
fzdfixes, calculator auto-discovery, and recursive directory-tree staging).
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
fz/__init__.py |
Updates the single-source version string to 1.1 for packaging. |
NEWS.md |
Adds the 1.1 release header/date and keeps an Unreleased section at the top. |
README.md |
Updates the version badge to 1.1. |
skills/fz/SKILL.md |
Updates install guidance and feature caveats to reflect fz ≥ 1.1 behavior. |
skills/fz/reference.md |
Updates CLI reference notes (aliases, calculator discovery) to reflect fz ≥ 1.1. |
skills/fz/code-wrapper.md |
Updates directory-tree staging requirements to fz ≥ 1.1. |
skills/examples/openfoam-dambreak-random-sampling.md |
Updates prerequisites/notes to require fz ≥ 1.1 for the example. |
skills/examples/newton-cooling-calibration.md |
Updates prerequisites to require fz ≥ 1.1 due to fzd CLI fix. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Repo-side preparation for the 1.1 release. Does not publish — that happens when a GitHub Release (tag
1.1) is published, triggeringrelease.yml.Changes
1.1infz/__init__.py(the single source;pyproject.tomlreads it viaattr = "fz.__version__", andfz/_version.pyis CI-stamped — left untouched).## Unreleasedto## Version 1.1 (2026-06-15)and opened a fresh empty## Unreleased. 1.1 collects everything merged this cycle: CLI argument aliases, calculator-discovery fixes, thefzdCLI execution fix, recursive directory-tree staging,fzdinput-flag aliases, CLI hardening, and the two worked skill examples + skill hardening.1.0→1.1.--calculators <alias>, fzd input-flag aliases, positional paths), bumped install hints tofunz-fz>=1.1where a feature needs it (directory-case codes, CLIfzd), and kept accurate "fz 1.0 only" notes for what changed.Verification
import fz; fz.__version__→1.1.tests/test_skill_static.pygreen (the skill-claim drift checks).\d+\.\d+); no test hard-codes1.0.After merge — cutting the release (your call)
Create a GitHub Release: tag
1.1, title "fz 1.1", notes from the NEWS 1.1 section. That triggers the wheel build (Py 3.9–3.14 × 3 OSes) and the PyPI publish via trusted publishing.🤖 Generated with Claude Code