Bump version#59
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR bumps the Profile Explorer application version to 1.3.0 and introduces a PowerShell utility to keep version numbers synchronized across the project and installer assets.
Changes:
- Updated application version metadata in the WPF UI project (
ProfileExplorerUI.csproj) to 1.3.0. - Updated installer build scripts (x64/ARM64) to 1.3.0.
- Added
scripts/Bump-Version.ps1and documented the new version-bumping workflow inAGENTS.md.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| src/ProfileExplorerUI/ProfileExplorerUI.csproj | Bumps Assembly/File/Package version fields to 1.3.0. |
| scripts/Bump-Version.ps1 | Adds a script to bump/check versions across the project + installer scripts. |
| installer/x64/prepare-installer.cmd | Bumps the installer version string to 1.3.0. |
| installer/arm64/prepare-installer.cmd | Bumps the installer version string to 1.3.0. |
| AGENTS.md | Documents how to bump versions using the new script. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @@ -1,3 +1,3 @@ | |||
| set %_VERSION="1.2.1" | |||
| set %_VERSION="1.3.0" | |||
| @@ -1,3 +1,3 @@ | |||
| set %_VERSION="1.2.1" | |||
| set %_VERSION="1.3.0" | |||
Comment on lines
+293
to
+297
| # Apply replacements. Re-run regex against the live text on each iteration | ||
| # to keep indices accurate after each substitution. | ||
| $newText = $text | ||
| $totalReplacements = 0 | ||
| foreach ($pattern in $target.Patterns) { |
Comment on lines
+92
to
+101
| Name = 'installer/x64/prepare-installer.cmd' | ||
| Path = Join-Path $RepoRoot 'installer\x64\prepare-installer.cmd' | ||
| Patterns = @('(?<prefix>set %_VERSION=")(?<ver>\d+\.\d+\.\d+)(?<suffix>")') | ||
| ExpectedHits = 1 | ||
| }, | ||
| [pscustomobject]@{ | ||
| Name = 'installer/arm64/prepare-installer.cmd' | ||
| Path = Join-Path $RepoRoot 'installer\arm64\prepare-installer.cmd' | ||
| Patterns = @('(?<prefix>set %_VERSION=")(?<ver>\d+\.\d+\.\d+)(?<suffix>")') | ||
| ExpectedHits = 1 |
ivberg
approved these changes
Jun 8, 2026
jhpohovey
approved these changes
Jun 8, 2026
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.
No description provided.