From c27bcaa44d7138e51fade53d6ad7c3c57c445dfb Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Thu, 15 Feb 2024 08:25:57 -0600 Subject: [PATCH] Tag v1.37.1 (libtmux bumps) --- CHANGES | 8 ++++++++ pyproject.toml | 2 +- src/tmuxp/__about__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index c743eec6f5..d4bee27a7c 100644 --- a/CHANGES +++ b/CHANGES @@ -19,6 +19,14 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force +## tmuxp 1.37.1 (2024-02-15) + +#### Development + +- libtmux: 0.28.0 -> 0.28.1 + + Maintenance release (docs and CI bumps) + #### Testing - CI: Bump actions to node 20+ versions diff --git a/pyproject.toml b/pyproject.toml index abaf820f56..9c0fbd52e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tmuxp" -version = "1.37.0" +version = "1.37.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 5f16840420..f99e4a9b54 100644 --- a/src/tmuxp/__about__.py +++ b/src/tmuxp/__about__.py @@ -1,7 +1,7 @@ """Metadata for tmuxp package.""" __title__ = "tmuxp" __package_name__ = "tmuxp" -__version__ = "1.37.0" +__version__ = "1.37.1" __description__ = "tmux session manager" __email__ = "tony@git-pull.com" __author__ = "Tony Narlock"