chore: v1.0.1 patch release - #110
Merged
Merged
Conversation
1. Update macOS runner from macos-13 to macos-15 - macOS-13 runner images have been retired by GitHub Actions - Updated build-wheels and build-cli jobs 2. Fix publish job conditions for tag-triggered releases - Changed condition from `!inputs.dry_run` to handle undefined inputs - Now uses: (github.event_name != 'workflow_dispatch' || !inputs.dry_run) - Fixes: publish-pypi, publish-crates, update-homebrew jobs being skipped Reference: actions/runner-images#13046 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Patch release to fix workflow issues: - Version: 1.0.0 → 1.0.1 - Updated CHANGELOG.md with v1.0.1 fixes This is necessary because crates.io v1.0.0 was already published and cannot be overwritten. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
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.
v1.0.1 Patch Release
This patch release fixes workflow issues that prevented PyPI publishing and caused macOS build failures in v1.0.0.
Changes
Workflow Fixes (39cf6ac)
macos-13tomacos-15!inputs.dry_run→(github.event_name != 'workflow_dispatch' || !inputs.dry_run)Version Bump (3841b34)
Why Patch Release?
crates.io v1.0.0 was successfully published before the workflow failed, and crates.io doesn't allow overwriting versions. PyPI was skipped due to the workflow bug, so v1.0.1 will be the first PyPI release.
Affected Jobs (v1.0.0)
After Merge
git push --delete origin v1.0.0git tag v1.0.1 && git push origin v1.0.1🤖 Generated with Claude Code