Skip to content

Commit 570d369

Browse files
PangMo5claude
andcommitted
chore: release 1.3.0
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent cfba675 commit 570d369

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to Tatami. This file is the source of truth for the release
44
notes shown on the website and on GitHub Releases (the release workflow appends
55
an Install / Update section when publishing).
66

7-
## Unreleased
7+
## 1.3.0 — 2026-06-06
88

99
### ⚠️ Breaking Changes
1010
- **`[[floatingApps]]` is now `[[sharedApps]]`** — configs migrate automatically on first launch: each floating entry becomes a shared app with `floating = true`. Shared apps are part of *every* workspace — tiled into each layout by default, or floating everywhere. Manage them in **Workspaces → Shared Apps**; dotfiles that template the config should switch to the new key.

Project.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ let developmentTeam = Environment.developmentTeam.getString(default: "")
99
let sparklePublicEDKey = Environment.sparklePublicEdKey.getString(default: "")
1010
// Single source of truth for the marketing version. The release workflow
1111
// verifies the pushed tag matches this before building.
12-
let appVersion = "1.2.1"
12+
let appVersion = "1.3.0"
1313
// Build number is injected by CI (github.run_number); 1 for local builds.
1414
let buildNumber = Environment.buildNumber.getString(default: "1")
1515

TatamiKit/Sources/Dependencies/WhatsNewClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ private struct WhatsNewView: View {
197197
VStack(alignment: .leading, spacing: 2) {
198198
Text(title)
199199
.font(.headline)
200-
Text(try! AttributedString(markdown: detail))
200+
Text((try? AttributedString(markdown: detail)) ?? AttributedString(detail))
201201
.font(.callout)
202202
.foregroundStyle(.secondary)
203203
.fixedSize(horizontal: false, vertical: true)

0 commit comments

Comments
 (0)