From 3233df3bb0cd83afc3797779cc83df7c885858ff Mon Sep 17 00:00:00 2001 From: Sascha Haase Date: Mon, 1 Jun 2026 17:22:26 +0200 Subject: [PATCH] chore(release): 0.3.1 (changelog + build-script version bump) Co-Authored-By: Claude Opus 4.8 (1M context) --- CHANGELOG.md | 2 ++ scripts/build-exe.ps1 | 4 ++-- src/ClaudePortable.Installer/build-msi.ps1 | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6079391..58e656f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.3.1] - 2026-06-01 + ### Fixed - **Discovery no longer shows a permanently-empty `coworkSessions` row.** diff --git a/scripts/build-exe.ps1 b/scripts/build-exe.ps1 index 83d719f..c42862d 100644 --- a/scripts/build-exe.ps1 +++ b/scripts/build-exe.ps1 @@ -15,11 +15,11 @@ Debug or Release (default Release). .EXAMPLE - pwsh .\build-exe.ps1 -Version 0.3.0 + pwsh .\build-exe.ps1 -Version 0.3.1 #> param( - [string] $Version = "0.3.0", + [string] $Version = "0.3.1", [string] $Configuration = "Release" ) diff --git a/src/ClaudePortable.Installer/build-msi.ps1 b/src/ClaudePortable.Installer/build-msi.ps1 index f6d2651..d5ad902 100644 --- a/src/ClaudePortable.Installer/build-msi.ps1 +++ b/src/ClaudePortable.Installer/build-msi.ps1 @@ -10,7 +10,7 @@ # pwsh .\build-msi.ps1 [-Version 0.1.0] [-Configuration Release] param( - [string] $Version = "0.3.0", + [string] $Version = "0.3.1", [string] $Configuration = "Release" )