From 43671ae1dabab18d911e082bf5bd12fa138dca1d Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sun, 17 Mar 2024 10:04:42 -0500 Subject: [PATCH] Tag v1.41.1 (use Pane.split) --- CHANGES | 6 ++++++ pyproject.toml | 2 +- src/tmuxp/__about__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 05a5d7703b..f5aa2ae5c9 100644 --- a/CHANGES +++ b/CHANGES @@ -19,6 +19,12 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force +## tmuxp 1.41.1 (2024-03-17) + +_Maintenance only, no bug fixes or new features_ + +- WorkspaceBuilder: Use `Pane.split` instead of `Window.split_window` + ## tmuxp 1.41.0 (2024-03-17) _Maintenance only, no bug fixes or new features_ diff --git a/pyproject.toml b/pyproject.toml index 73ffee9364..16106096f0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tmuxp" -version = "1.41.0" +version = "1.41.1" description = "Session manager for tmux, which allows users to save and load tmux sessions through simple configuration files." license = "MIT" authors = ["Tony Narlock "] diff --git a/src/tmuxp/__about__.py b/src/tmuxp/__about__.py index 9bdc6c2d91..23348828ff 100644 --- a/src/tmuxp/__about__.py +++ b/src/tmuxp/__about__.py @@ -2,7 +2,7 @@ __title__ = "tmuxp" __package_name__ = "tmuxp" -__version__ = "1.41.0" +__version__ = "1.41.1" __description__ = "tmux session manager" __email__ = "tony@git-pull.com" __author__ = "Tony Narlock"