From 0f1b3b4be4af763e3e1423205e69da45ea11542f Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Wed, 7 Feb 2024 06:20:54 -0600 Subject: [PATCH] Tag v1.35.0 (libtmux bump, linting improvements) --- CHANGES | 6 +++++- pyproject.toml | 2 +- src/tmuxp/__about__.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index a1edaefe59..339cc54a80 100644 --- a/CHANGES +++ b/CHANGES @@ -15,10 +15,14 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force // Usage: tmuxp@next load yoursession ``` -## tmuxp 1.35.x (unreleased) +## tmuxp 1.36.x (unreleased) +## tmuxp 1.35.0 (2024-02-07) + +_Maintenance only, no bug fixes or new features_ + ### Breaking changes - libtmux: 0.25.0 -> 0.26.0, maintenance release (#906) diff --git a/pyproject.toml b/pyproject.toml index e08f9335dd..a658032a83 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tmuxp" -version = "1.34.0" +version = "1.35.0" 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 05efa84931..55ee028f02 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.34.0" +__version__ = "1.35.0" __description__ = "tmux session manager" __email__ = "tony@git-pull.com" __author__ = "Tony Narlock"