From 349a43bad68d701b97f7ccaee188864f0c45880c Mon Sep 17 00:00:00 2001
From: Mathijs Beemsterboer <15211332+TheBeems@users.noreply.github.com>
Date: Thu, 16 Jul 2026 14:17:19 +0200
Subject: [PATCH 1/2] Release version 0.5.2
---
CHANGELOG.md | 5 ++++-
CodexUsageDock/CodexUsageDock.csproj | 2 +-
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 10c427e..aa662dc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,8 @@ Each entry links to the commit or pull request that introduced the change.
## [Unreleased]
+## [0.5.2] - 2026-07-16
+
### Fixed
- Microsoft Store packages now include the complete self-contained .NET application layout, preventing startup failures caused by a missing managed entry assembly. ([PR #11](https://github.com/TheBeems/CodexUsageDock/pull/11))
@@ -90,7 +92,8 @@ Each entry links to the commit or pull request that introduced the change.
- Initial release of the Windows Command Palette extension for viewing local Codex usage. [commit ac72fe5](https://github.com/TheBeems/CodexUsageDock/commit/ac72fe50fcd1af36f41cda896f1d792899573351)
- Automated release installer creation and smoke-test handling. [commit 64a3305](https://github.com/TheBeems/CodexUsageDock/commit/64a33058b7486dea12f026561c545b362eb2d622), [commit 21790a1](https://github.com/TheBeems/CodexUsageDock/commit/21790a1ea60a9bfec14ec578d77356c5576472fb)
-[Unreleased]: https://github.com/TheBeems/CodexUsageDock/compare/v0.5.0...main
+[Unreleased]: https://github.com/TheBeems/CodexUsageDock/compare/v0.5.2...main
+[0.5.2]: https://github.com/TheBeems/CodexUsageDock/releases/tag/v0.5.2
[0.5.0]: https://github.com/TheBeems/CodexUsageDock/releases/tag/v0.5.0
[0.4.0]: https://github.com/TheBeems/CodexUsageDock/releases/tag/v0.4.0
[0.3.0]: https://github.com/TheBeems/CodexUsageDock/releases/tag/v0.3.0
diff --git a/CodexUsageDock/CodexUsageDock.csproj b/CodexUsageDock/CodexUsageDock.csproj
index a7faeff..2bbd2cf 100644
--- a/CodexUsageDock/CodexUsageDock.csproj
+++ b/CodexUsageDock/CodexUsageDock.csproj
@@ -3,7 +3,7 @@
WinExe
CodexUsageDock
app.manifest
- 0.5.1
+ 0.5.2
10.0.26100.68-preview
net10.0-windows10.0.26100.0
From 241d63b308a146f0831070540b72ca330dfe1ae0 Mon Sep 17 00:00:00 2001
From: Mathijs Beemsterboer <15211332+TheBeems@users.noreply.github.com>
Date: Thu, 16 Jul 2026 14:22:13 +0200
Subject: [PATCH 2/2] Update release version test
---
CodexUsageDock.Tests/UsageDataTests.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CodexUsageDock.Tests/UsageDataTests.cs b/CodexUsageDock.Tests/UsageDataTests.cs
index 431f576..40fa5e4 100644
--- a/CodexUsageDock.Tests/UsageDataTests.cs
+++ b/CodexUsageDock.Tests/UsageDataTests.cs
@@ -163,7 +163,7 @@ public void DetailsPageUsesTheProjectReleaseVersion()
using var service = new CodexUsageService();
using var page = new CodexUsageDockPage(service, new CodexUsageDockSettingsPage());
- Assert.Equal("0.5.1", CodexUsageDockMetadata.Version);
+ Assert.Equal("0.5.2", CodexUsageDockMetadata.Version);
Assert.Equal($"Codex Usage - {CodexUsageDockMetadata.Version}", page.Title);
}