chore: revert 0.2.0 bump and link CLI install guide on web#1079
Merged
Conversation
Semgrep Security ScanNo security issues found. |
|
Preview environment destroyed 🧹 Stack |
There was a problem hiding this comment.
🔭 thunder-deep-review (advisory)
Complements the other bots — surfaces only what they did not flag. Never approves, never requests changes, never gates merge.
head: 285096e6391c · mode: single · deferred 0 item(s) already reported by other bots (best-effort dedup)
PR Metrics
Updated Mon, 13 Jul 2026 17:49:06 GMT · run #2278 |
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.
Two changes, on top of the merged #1032.
1. Revert the accidental 0.2.0 version bump
The release run auto-detected the
feat:#1032 merge and did a minor bump (0.1.106 → 0.2.0). We want to stay on the 0.1.x line, so this revertschore: bump version to 0.2.0 for release— version files return to0.1.106and the 0.2.0 CHANGELOG entry is removed.The
v0.2.0GitHub releases (draft + the one that briefly published) and thev0.2.0tag have already been deleted. To cut the next stable release, run the Release workflow withversion_type: patch(or an explicitversion) so it lands 0.1.107, not 0.2.0. No change to the version-detection logic.2. Web CLI install-guide link
The "Thunderbolt CLI" card previously rendered nothing outside the Tauri desktop app. It now also appears on the web, where it links to the install guide (
cli/README.md#install, which has the curl/binary and from-source instructions) instead of the one-click installer (that only works in Tauri). Tauri behavior is unchanged — one-click install on supported arch, hidden on unsupported arch.Verified:
bun run type-check,cd cli && bun run typecheck, and the install-card tests (web guide + Tauri cases) all pass.