Skip to content

Commit d88a212

Browse files
committed
Tag v0.60.0 (tmux 3.7 feature parity)
Completes tmux 3.7 feature parity on top of the 0.59.0 compatibility release: floating panes, typed 3.7 options, new pane format variables, and new command flags (#694). All 3.7-only surfaces are version-gated; tmux 3.2a-3.6 remain supported with no breaking changes. - CHANGES: date the 0.60.0 release section and open a fresh 0.61.x unreleased placeholder - Bump version 0.59.0 -> 0.60.0 in pyproject.toml and __about__.py - Refresh uv.lock for the new version
1 parent b56b228 commit d88a212

4 files changed

Lines changed: 15 additions & 4 deletions

File tree

CHANGES

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

40-
## libtmux 0.60.x (Yet to be released)
40+
## libtmux 0.61.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.60.0 (2026-06-28)
49+
50+
libtmux 0.60.0 completes tmux 3.7 feature parity. Building on the 3.7
51+
compatibility shipped in 0.59.0, it adds first-class floating panes via
52+
{meth}`~libtmux.Pane.new_pane` and {meth}`~libtmux.Window.new_pane`,
53+
types tmux 3.7's new server, session, window, and pane options, exposes
54+
the new pane format variables on {class}`~libtmux.Pane`, and wraps tmux
55+
3.7's new command flags. Every 3.7-only surface is version-gated, so
56+
tmux 3.2a-3.6 keep working unchanged. See {ref}`floating-panes` for a
57+
guide.
58+
4859
### What's new
4960

5061
#### Typed tmux 3.7 options (#694)

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.59.0"
3+
version = "0.60.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.59.0"
7+
__version__ = "0.60.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: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)