fix: bump __version__ to 0.3.0 to match the released version - #97
Open
Niko11111 wants to merge 1 commit into
Open
fix: bump __version__ to 0.3.0 to match the released version#97Niko11111 wants to merge 1 commit into
Niko11111 wants to merge 1 commit into
Conversation
__version__.py still reported 0.2.0 after the v0.3.0 release. The Helm chart derives its appVersion from this file on every push to main, so dev charts have been published as 0.2.0-dev since 23.12.2025, and users checking the file inside the container see the wrong version. Reported in drndos#89.
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.
__version__.pystill reports0.2.0, although v0.3.0 was released on23.12.2025. This is the file reported in #89.
It is not only cosmetic.
.github/workflows/helm-publish.ymlderives thechart's
appVersionfrom this file on every push tomain:So every dev chart published since the v0.3.0 release carries
appVersion: 0.2.0-dev. Users who check the version the way #89 describes(
docker exec openspoolman cat __version__.py) are told the wrong thing too.Release builds are unaffected: on a release the workflow takes the version
from the git tag, not from this file.
This PR only corrects the value. Showing the version in the web UI, which
#89 also asks for, is a separate change.
PR checklist
that
python -c "exec(open('__version__.py').read()); print(__version__)",the exact call helm-publish.yml makes, now prints
0.3.0News section already lists v0.3.0
impact; dev charts will now report
0.3.0-devVerified locally:
pytestgreen in both matrix legs (TRACK_LAYER_USAGEfalse and true) on Python 3.13, and
flake8 --select=E9,F63,F7,F82clean.