From 957d7c7de939cfdfca5b14be0c10eeb1e38b96aa Mon Sep 17 00:00:00 2001 From: Nick Skriabin Date: Fri, 13 Mar 2026 00:44:13 +0400 Subject: [PATCH 1/2] chore: bump version to v0.2.42 --- build.zig.zon | 2 +- resources/Info.plist | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.zig.zon b/build.zig.zon index a357cc36..3792887f 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -9,7 +9,7 @@ .name = .attyx, // This is a [Semantic Version](https://semver.org/). // In a future version of Zig it will be used for package deduplication. - .version = "0.2.41", + .version = "0.2.42", // Together with name, this represents a globally unique package // identifier. This field is generated by the Zig toolchain when the // package is first created, and then *never changes*. This allows diff --git a/resources/Info.plist b/resources/Info.plist index 587e3510..0a14e2f2 100644 --- a/resources/Info.plist +++ b/resources/Info.plist @@ -9,9 +9,9 @@ CFBundleIdentifier com.semos-labs.attyx CFBundleVersion - 0.2.41 + 0.2.42 CFBundleShortVersionString - 0.2.41 + 0.2.42 CFBundleExecutable attyx CFBundleIconFile From 1a4645d6d2bfc48dfdf00cf89e8649bae5f2f493 Mon Sep 17 00:00:00 2001 From: Nick Skriabin Date: Fri, 13 Mar 2026 00:45:49 +0400 Subject: [PATCH 2/2] Release notes --- releases/v0.2.42.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 releases/v0.2.42.md diff --git a/releases/v0.2.42.md b/releases/v0.2.42.md new file mode 100644 index 00000000..e70fa72d --- /dev/null +++ b/releases/v0.2.42.md @@ -0,0 +1,7 @@ +# Attyx v0.2.42 + +## Daemon Upgrade No Longer Kills Running Sessions + +Previously, upgrading the Attyx daemon while terminals were open would kill all running shell sessions within milliseconds. This happened because the new daemon process couldn't track shells that were started by the old one — it mistakenly concluded they had exited and closed every pane. + +This is now fixed. Daemon upgrades are seamless: your shells, running commands, and active sessions all survive the transition without interruption.