From 861bf21035e138b1745f1cff8284883985389be2 Mon Sep 17 00:00:00 2001 From: Bojie Li Date: Sat, 29 Aug 2026 00:25:01 +0800 Subject: [PATCH] release: bump version to 0.4.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Minor rather than patch: a history row gains two things it could not do before — transcribe its kept recording again, and hand you that recording as a file — on all four clients. Nothing about how a dictation is captured, sent or transcribed changes, so nothing an existing install already does behaves differently. VERSION plus the seven fields scripts/stamp-version.sh propagates it to. Both CLIs report `dnt 0.4.0 (9a795fc, 2026-08-28)`. The near-miss gate was not re-run: docs/RELEASING.md asks for it when the prompt, the model or the context encoder changed, and this release touches none of the three. The dictation-accuracy gate is likewise not implicated, because nothing here makes a quality claim. The manual checks in docs/MANUAL-CHECKS.md have NOT been run — they need a microphone, a focused window in another application, a paid request and somebody who knows what was said. That belongs in the draft release notes before publishing, as the checklist itself requires. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_016jptSNBmsbgyPSf8FMpxpa --- CHANGELOG.md | 8 ++++++++ Resources/Info.plist | 4 ++-- Sources/dnt/Dnt.swift | 2 +- VERSION | 2 +- android/app/build.gradle.kts | 4 ++-- ios/project.yml | 4 ++-- windows/Directory.Build.props | 2 +- windows/DoNotType.App/app.manifest | 2 +- windows/DoNotType.Cli/InspectionCommands.cs | 2 +- windows/DoNotType.Cli/Program.cs | 2 +- 10 files changed, 20 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b12177..87fd209 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,14 @@ repository's local calendar date. ## Unreleased +## 0.4.0 - 2026-08-29 + +The recording behind a dictation becomes something you can act on. A history row whose audio is +still kept can transcribe it again — the fix for a transcript that arrived and arrived *wrong*, +which Retry could never reach because that row is completed — and hand you the recording itself as +a file. Minor rather than patch: it is a new capability on all four clients, and nothing about how +a dictation is captured, sent or transcribed changes. + ### Added - **A history row can transcribe its recording again, and hand you the recording.** Retry only ever diff --git a/Resources/Info.plist b/Resources/Info.plist index 8a6ed9f..f824e04 100644 --- a/Resources/Info.plist +++ b/Resources/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.3.0 + 0.4.0 CFBundleVersion - 300 + 400 LSMinimumSystemVersion 14.0 LSUIElement diff --git a/Sources/dnt/Dnt.swift b/Sources/dnt/Dnt.swift index 7c52c0c..b3cddbc 100644 --- a/Sources/dnt/Dnt.swift +++ b/Sources/dnt/Dnt.swift @@ -38,7 +38,7 @@ struct Dnt: AsyncParsableCommand { dnt doctor --probe dnt logs --follow --level debug """, - version: "dnt 0.3.0 (6938aa8, 2026-08-25)", + version: "dnt 0.4.0 (9a795fc, 2026-08-28)", subcommands: [ Transcribe.self, Providers.self, Doctor.self, HistoryCommand.self, LogsCommand.self, PromptCommand.self, diff --git a/VERSION b/VERSION index 0d91a54..1d0ba9e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.3.0 +0.4.0 diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 7f0febf..b84f6b6 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -32,8 +32,8 @@ android { // coroutine APIs used here available without desugaring. minSdk = 26 targetSdk = 35 - versionCode = 300 - versionName = "0.3.0" + versionCode = 400 + versionName = "0.4.0" // The value is a Java literal, so the quotes are part of it. buildConfigField("String", "BUILD_COMMIT", "\"$buildCommit\"") buildConfigField("String", "BUILD_TIMESTAMP", "\"$buildTimestamp\"") diff --git a/ios/project.yml b/ios/project.yml index 1b59535..2ebd115 100644 --- a/ios/project.yml +++ b/ios/project.yml @@ -15,8 +15,8 @@ settings: SWIFT_VERSION: "6.0" DEVELOPMENT_TEAM: 5BR9M56H9W CODE_SIGN_STYLE: Automatic - MARKETING_VERSION: "0.3.0" - CURRENT_PROJECT_VERSION: "300" + MARKETING_VERSION: "0.4.0" + CURRENT_PROJECT_VERSION: "400" SWIFT_STRICT_CONCURRENCY: complete packages: diff --git a/windows/Directory.Build.props b/windows/Directory.Build.props index 0fa5758..5133af0 100644 --- a/windows/Directory.Build.props +++ b/windows/Directory.Build.props @@ -10,7 +10,7 @@ true - 0.3.0 + 0.4.0