From 4a731cc21c6549c080477d82543159c4ee7b1b07 Mon Sep 17 00:00:00 2001 From: JacobPoteet Date: Sat, 22 Aug 2026 19:09:45 -0400 Subject: [PATCH] Bump version to 0.6.0 The v0.6.0 tag fired release.yml, which checks the csproj against the tag and failed: the folder-sizes/navigation/triage work landed without touching the version, so the csproj still said 0.5.0. Bumps the two places that matter and the two that document them: csproj , build.ps1's -Version default, and the example commands in CLAUDE.md and README.md. Nothing shipped in a broken state. The v0.6.0 release exists with no assets, and CheckForUpdateAsync returns null when it finds no ExplorerHelper-Setup-*.exe among them, so installed copies read it as "no update" rather than offering a download that would 404. Co-Authored-By: Claude Opus 5 --- CLAUDE.md | 6 +++--- README.md | 4 ++-- build.ps1 | 2 +- src/ExplorerHelper/ExplorerHelper.csproj | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 695d77e..5ad1e2c 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -28,11 +28,11 @@ dotnet run --project src/ExplorerHelper -- "C:\some\folder" src/ExplorerHelper/bin/Debug/net8.0-windows/ExplorerHelper.exe "C:\some\folder" # Publish self-contained exe + portable zip into artifacts/ (also the CI smoke test) -# build.ps1's -Version default and the csproj both track the newest tag (0.5.0). +# build.ps1's -Version default and the csproj both track the newest tag (0.6.0). # Bump both when cutting a release — release.yml fails the build if they disagree with the tag, # because a lagging version makes every local build think an update is waiting (issue #33). -./build.ps1 -Version 0.5.0 -./build.ps1 -Version 0.5.0 -Installer # also builds Inno Setup installer +./build.ps1 -Version 0.6.0 +./build.ps1 -Version 0.6.0 -Installer # also builds Inno Setup installer ``` There is **no test project**. Verify changes by driving the running app (see below). diff --git a/README.md b/README.md index 3f79f3e..e130b0e 100644 --- a/README.md +++ b/README.md @@ -64,10 +64,10 @@ Requires the [.NET SDK](https://dotnet.microsoft.com/download) 8 or newer. dotnet run --project src/ExplorerHelper # Publish self-contained exe + portable zip into artifacts/ -./build.ps1 -Version 0.5.0 +./build.ps1 -Version 0.6.0 # Also compile the installer (requires Inno Setup 6: winget install JRSoftware.InnoSetup) -./build.ps1 -Version 0.5.0 -Installer +./build.ps1 -Version 0.6.0 -Installer ``` ## Releasing diff --git a/build.ps1 b/build.ps1 index db56558..3747c7d 100644 --- a/build.ps1 +++ b/build.ps1 @@ -7,7 +7,7 @@ #> param( [string]$Configuration = 'Release', - [string]$Version = '0.5.0', + [string]$Version = '0.6.0', [switch]$Installer ) diff --git a/src/ExplorerHelper/ExplorerHelper.csproj b/src/ExplorerHelper/ExplorerHelper.csproj index 6ac7f44..3e05413 100644 --- a/src/ExplorerHelper/ExplorerHelper.csproj +++ b/src/ExplorerHelper/ExplorerHelper.csproj @@ -9,7 +9,7 @@ Explorer Helper Explorer Helper Clean and organize folders straight from the Explorer context menu. - 0.5.0 + 0.6.0 app.manifest