Bump/vsc v0.1.1#516
Open
chiaramooney wants to merge 2 commits intomainfrom
Open
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Bumps the WinApp VS Code extension version to 0.1.1 and simplifies console output formatting in the VS Code release helper script.
Changes:
- Update VS Code extension
package.jsonversion from0.1.0to0.1.1. - Replace ASCII/box-drawing “release plan” and “release started” banners in
start-vsc-release.ps1with simplerWrite-Hostoutput.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| src/winapp-VSC/package.json | Bumps extension version to 0.1.1. |
| scripts/start-vsc-release.ps1 | Simplifies release-plan and completion console output for the VSC release flow. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "publisher": "Microsoft-WinAppCLI", | ||
| "icon": "images/icon.png", | ||
| "version": "0.1.0", | ||
| "version": "0.1.1", |
| Write-Host " │ 2. Bump version to $nextVersion on main$((' ' * (9 - $nextVersion.Length)))│" -ForegroundColor White | ||
| Write-Host " │ 3. Create PR to merge bump into main │" -ForegroundColor White | ||
| Write-Host " └─────────────────────────────────────────────┘" -ForegroundColor White | ||
| $pad = { param($s, $w) (' ' * [Math]::Max(0, $w - $s.Length)) } |
Comment on lines
+291
to
+293
| Write-Host " • Release branch '$releaseBranch' pushed" -ForegroundColor Green | ||
| Write-Host " • Version bump PR created for $nextVersion" -ForegroundColor Green | ||
| Write-Host "" -ForegroundColor Green |
Build Metrics ReportBinary Sizes
Test Results✅ 923 passed, 1 skipped out of 924 tests in 825.0s (+363.5s vs. baseline) Test Coverage❌ 23.2% line coverage, 38.9% branch coverage · ✅ no change vs. baseline CLI Startup Time36ms median (x64, Updated 2026-05-01 21:59:34 UTC · commit |
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.
Description
Bump VSCE to v0.1.1 + fix vsc release script formatting.
Usage Example
Related Issue
Type of Change
Checklist
docs/fragments/skills/(if CLI commands/workflows changed)Screenshots / Demo
Additional Notes
AI Description
This PR updates the VSCE version in the WinApp extension from v0.1.0 to v0.1.1 and enhances the output formatting in the PowerShell script used for the VSC release process. The changes improve the readability of the release plan and status messages without changing any functionality.
# Check the updated version in package.json cat src/winapp-VSC/package.jsonBreaking Change: No.