Skip to content

Commit 781c7ce

Browse files
committed
Tag v0.58.0
why: Behavioral change — explicit UTF-8 encoding in subprocess decoding warrants a minor version bump. what: - Bump version 0.57.1 -> 0.58.0 in pyproject.toml and __about__.py - Stamp CHANGES with release date 2026-05-23 - Add next-release placeholder
1 parent cb8384e commit 781c7ce

4 files changed

Lines changed: 12 additions & 5 deletions

File tree

CHANGES

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,21 @@ $ uv add libtmux --prerelease allow
3737
$ uvx --from 'libtmux' --prerelease allow python
3838
```
3939

40-
## libtmux 0.58.x (Yet to be released)
40+
## libtmux 0.59.x (Yet to be released)
4141

4242
<!-- To maintainers and contributors: Please add notes for the forthcoming version below -->
4343

4444
<!-- KEEP THIS PLACEHOLDER - DO NOT REMOVE OR MODIFY THIS LINE -->
4545
_Notes on the upcoming release will go here._
4646
<!-- END PLACEHOLDER - ADD NEW CHANGELOG ENTRIES BELOW THIS LINE -->
4747

48+
## libtmux 0.58.0 (2026-05-23)
49+
50+
libtmux 0.58.0 fixes subprocess output decoding on non-UTF-8 locales.
51+
Both {class}`~libtmux.common.tmux_cmd` and
52+
{class}`~libtmux._internal.control_mode.ControlMode` now enforce UTF-8
53+
when reading tmux output, matching tmux's own encoding contract.
54+
4855
### Fixes
4956

5057
#### Subprocess encoding on non-UTF-8 locales (#679)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "libtmux"
3-
version = "0.57.1"
3+
version = "0.58.0"
44
description = "Typed library that provides an ORM wrapper for tmux, a terminal multiplexer."
55
requires-python = ">=3.10,<4.0"
66
authors = [

src/libtmux/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
__title__ = "libtmux"
66
__package_name__ = "libtmux"
7-
__version__ = "0.57.1"
7+
__version__ = "0.58.0"
88
__description__ = "Typed scripting library / ORM / API wrapper for tmux"
99
__email__ = "tony@git-pull.com"
1010
__author__ = "Tony Narlock"

uv.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)