Skip to content

Commit 7fb672e

Browse files
authored
py(deps): libtmux 0.32.0 -> 0.33.0 (#918)
2 parents d59f002 + db40f0b commit 7fb672e

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

CHANGES

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force
1919

2020
<!-- Maintainers, insert changes / features for the next release here -->
2121

22+
### Breaking changes
23+
24+
- libtmux: 0.32.0 -> 0.33.0 (#918)
25+
26+
Move `split_window()` to `split()`.
27+
2228
### Development
2329

2430
- poetry: 1.7.1 -> 1.8.1

docs/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ AL - [Abstraction Layer][abstraction layer]
149149
| {meth}`libtmux.Session.windows` | `$ tmux list-windows` |
150150
| {meth}`libtmux.Session.new_window` | `$ tmux new-window` |
151151
| {meth}`libtmux.Window.panes` | `$ tmux list-panes` |
152-
| {meth}`libtmux.Window.split_window` | `$ tmux split-window` |
152+
| {meth}`libtmux.Window.split` | `$ tmux split-window` |
153153
| {meth}`libtmux.Pane.send_keys` | `$ tmux send-keys` |
154154

155155
[import]: http://tmuxp.git-pull.com/commands/#import

poetry.lock

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ tmuxp = 'tmuxp:cli.cli'
4747

4848
[tool.poetry.dependencies]
4949
python = "^3.8"
50-
libtmux = "~0.32.0"
50+
libtmux = "~0.33.0"
5151
colorama = ">=0.3.9"
5252
PyYAML = "^6.0"
5353

tests/cli/test_shell.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def test_shell(
122122
monkeypatch.setenv("HOME", str(tmp_path))
123123
window_name = "my_window"
124124
window = session.new_window(window_name=window_name)
125-
window.split_window()
125+
window.split()
126126

127127
assert window.active_pane is not None
128128

@@ -215,7 +215,7 @@ def test_shell_target_missing(
215215
monkeypatch.setenv("HOME", str(tmp_path))
216216
window_name = "my_window"
217217
window = session.new_window(window_name=window_name)
218-
window.split_window()
218+
window.split()
219219

220220
assert server.socket_name is not None
221221
assert session.name is not None
@@ -292,7 +292,7 @@ def test_shell_interactive(
292292
monkeypatch.setenv("HOME", str(tmp_path))
293293
window_name = "my_window"
294294
window = session.new_window(window_name=window_name)
295-
window.split_window()
295+
window.split()
296296

297297
assert window.active_pane is not None
298298

0 commit comments

Comments
 (0)