From 4eea4557f887111e81b89f11f32d7137c5ac2b56 Mon Sep 17 00:00:00 2001
From: Mathijs Beemsterboer <15211332+TheBeems@users.noreply.github.com>
Date: Sun, 13 Sep 2026 08:59:08 +0200
Subject: [PATCH 1/2] Release Codex Usage Dock 0.7.0
---
CHANGELOG.md | 5 ++++-
CodexUsageDock/CodexUsageDock.csproj | 2 +-
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2e8827c..0f3f751 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.7.0] - 2026-09-13
+
### Added
- A text alternative for Codex quota, reset, trend, and local token data. ([PR #21](https://github.com/TheBeems/CodexUsageDock/pull/21))
@@ -181,7 +183,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.6.1...main
+[Unreleased]: https://github.com/TheBeems/CodexUsageDock/compare/v0.7.0...main
+[0.7.0]: https://github.com/TheBeems/CodexUsageDock/compare/v0.6.1...v0.7.0
[0.6.1]: https://github.com/TheBeems/CodexUsageDock/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/TheBeems/CodexUsageDock/commit/eed6505c5fef9a4a6a5c39d6bd5bff619aa13f07
[0.5.3]: https://github.com/TheBeems/CodexUsageDock/commit/312dc394ff51648f1b063cd39afdfabaf33d8a3e
diff --git a/CodexUsageDock/CodexUsageDock.csproj b/CodexUsageDock/CodexUsageDock.csproj
index a3773a4..dcd31e2 100644
--- a/CodexUsageDock/CodexUsageDock.csproj
+++ b/CodexUsageDock/CodexUsageDock.csproj
@@ -3,7 +3,7 @@
WinExe
CodexUsageDock
app.manifest
- 0.6.1
+ 0.7.0
10.0.26100.68-preview
net10.0-windows10.0.26100.0
From d17dda427acd48c78afa122e526f3f3e7dc629bb Mon Sep 17 00:00:00 2001
From: Mathijs Beemsterboer <15211332+TheBeems@users.noreply.github.com>
Date: Sun, 13 Sep 2026 09:03:40 +0200
Subject: [PATCH 2/2] Align release version assertion with 0.7.0
---
CHANGELOG.md | 1 +
CodexUsageDock.Tests/UsageDataTests.cs | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0f3f751..ff4628e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -31,6 +31,7 @@ Each entry links to the commit or pull request that introduced the change.
### Changed
+- Release version 0.7.0 with matching version information in the details page. ([PR #25](https://github.com/TheBeems/CodexUsageDock/pull/25))
- Show the local reset date and next earned-reset expiry directly in fresh Dock subtitles, with short regional month names and minute-precise times. ([PR #23](https://github.com/TheBeems/CodexUsageDock/pull/23))
- Cache local quota fallback read positions with bounded content reads and memory, while reporting incomplete scans and preserving event-time selection. ([PR #21](https://github.com/TheBeems/CodexUsageDock/pull/21))
- Expanded the release skill to cover scoped commit/push, Store submission, resumable certification tracking, and verified installation, with a repository-local Codex entry point. ([commit e54709c](https://github.com/TheBeems/CodexUsageDock/commit/e54709ce6e26b9aaa072d6f88625a9a3aa067494))
diff --git a/CodexUsageDock.Tests/UsageDataTests.cs b/CodexUsageDock.Tests/UsageDataTests.cs
index 26bef81..542db70 100644
--- a/CodexUsageDock.Tests/UsageDataTests.cs
+++ b/CodexUsageDock.Tests/UsageDataTests.cs
@@ -203,7 +203,7 @@ public void DetailsPageUsesTheProjectReleaseVersion()
using var service = _environment.CreateService();
using var page = new CodexUsageDockPage(service, _environment.CreateSettings());
- Assert.Equal("0.6.1", CodexUsageDockMetadata.Version);
+ Assert.Equal("0.7.0", CodexUsageDockMetadata.Version);
Assert.Equal($"Codex Usage - {CodexUsageDockMetadata.Version}", page.Title);
}