fix(desktop): numeric bundle version so the Windows .msi builds#22
Merged
Conversation
The WiX/MSI bundler rejects pre-release versions ("optional pre-release
identifier ... must be numeric-only"), so `0.1.0-alpha.0` failed the Windows
.msi target while .dmg/.AppImage built fine. Installer versions are numeric by
convention; the alpha channel is conveyed by the release tag/prerelease flag.
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.
The release run built everything except the Windows
.msi, which failed with:WiX/MSI doesn't accept semver pre-release suffixes, so
0.1.0-alpha.0was rejected (the app compiled fine — only packaging failed)..dmgand.AppImagedon't enforce this and built OK.Fix: set the Tauri bundle
versionto0.1.0. Installer versions are numeric by convention; the alpha designation lives in the release tag (v0.1.0-alpha, marked pre-release).After merge I'll move the
v0.1.0-alphatag onto this commit and re-run the release so all three desktop installers (now all0.1.0) attach.🤖 Generated with Claude Code