diff --git a/CHANGELOG.md b/CHANGELOG.md index 6539580..7b47b98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,19 @@ measurement that justified them; see [docs/EVALUATION.md](docs/EVALUATION.md). Format loosely follows [Keep a Changelog](https://keepachangelog.com/). Release dates use the repository's local calendar date. +## 0.6.2 - 2026-09-07 + +### Fixed + +- **The example box stops claiming to be empty while holding text.** The line above it read + *"Empty — however the model would write it"* whatever the box contained. It was not a status + readout: the sentence was passed as the text field's *title* rather than its placeholder, and a + form renders a title as a label and keeps it there regardless. Nothing about it was conditional, + so it said "Empty" over a box with a paragraph in it. It is now the placeholder, shown only while + the box is genuinely empty. (macOS; the identical line on iOS looked right because iOS puts a + field's title inside the field, and it is changed there too so neither depends on where a + platform decides to place a label.) + ## 0.6.1 - 2026-09-06 ### Fixed diff --git a/Resources/Info.plist b/Resources/Info.plist index fb392c2..19e3c77 100644 --- a/Resources/Info.plist +++ b/Resources/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.6.1 + 0.6.2 CFBundleVersion - 601 + 602 LSMinimumSystemVersion 14.0 LSUIElement diff --git a/Sources/dnt/Dnt.swift b/Sources/dnt/Dnt.swift index 368674f..d3dfd91 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.6.1 (b2cba25, 2026-09-06)", + version: "dnt 0.6.2 (c29cbda, 2026-09-06)", subcommands: [ Transcribe.self, Providers.self, Doctor.self, HistoryCommand.self, LogsCommand.self, PromptCommand.self, diff --git a/VERSION b/VERSION index ee6cdce..b616048 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.1 +0.6.2 diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 676fa2a..9133d22 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 = 601 - versionName = "0.6.1" + versionCode = 602 + versionName = "0.6.2" // 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 6a5267d..43c4fc2 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.6.1" - CURRENT_PROJECT_VERSION: "601" + MARKETING_VERSION: "0.6.2" + CURRENT_PROJECT_VERSION: "602" SWIFT_STRICT_CONCURRENCY: complete packages: diff --git a/windows/Directory.Build.props b/windows/Directory.Build.props index 2a2a258..fd26a62 100644 --- a/windows/Directory.Build.props +++ b/windows/Directory.Build.props @@ -10,7 +10,7 @@ true - 0.6.1 + 0.6.2