Fix version bump to 0.1.26 #211
Merged
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.
Fix version bump to 0.1.26
Summary
This PR fixes a release issue where version 0.1.26 was accidentally created without updating the version number in
pyproject.toml, which still showed 0.1.25.What was done:
pyproject.tomlversion from 0.1.25 → 0.1.26This ensures the package version in
pyproject.tomlmatches the intended release version, which is critical for the Python publishing workflow that reads the version from this file.Review & Testing Checklist for Human
Diagram
%%{ init : { "theme" : "default" }}%% graph TD pyproject["pyproject.toml<br/>version: 0.1.25 → 0.1.26"]:::major-edit workflow[".github/workflows/<br/>python-publish.yml"]:::context release["GitHub Release<br/>0.1.26"]:::context pypi["PyPI Package<br/>tokencost 0.1.26"]:::context pyproject --> workflow workflow --> pypi release --> workflow subgraph Legend L1[Major Edit]:::major-edit L2[Minor Edit]:::minor-edit L3[Context/No Edit]:::context end classDef major-edit fill:#90EE90 classDef minor-edit fill:#87CEEB classDef context fill:#FFFFFFNotes