Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 7 additions & 0 deletions releases/v0.2.42.md
Original file line number Diff line number Diff line change
@@ -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.
4 changes: 2 additions & 2 deletions resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
<key>CFBundleIdentifier</key>
<string>com.semos-labs.attyx</string>
<key>CFBundleVersion</key>
<string>0.2.41</string>
<string>0.2.42</string>
<key>CFBundleShortVersionString</key>
<string>0.2.41</string>
<string>0.2.42</string>
<key>CFBundleExecutable</key>
<string>attyx</string>
<key>CFBundleIconFile</key>
Expand Down
Loading