From 222a415e1462415e8b33cc31c38e860ae2440c6d Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 2 Sep 2023 05:11:57 -0500 Subject: [PATCH] Tag v1.29.0post0 (libtmux post-release bump) --- CHANGES | 6 ++++++ pyproject.toml | 2 +- src/tmuxp/__about__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 8e91c266f9..14c8b9a40b 100644 --- a/CHANGES +++ b/CHANGES @@ -29,6 +29,12 @@ _Maintenance only, no bug fixes, or new features_ Code quality improvements from https://github.com/tmux-python/libtmux/pull/488 +### Post-release: v1.29.0post0 (2023-09-02) + +- libtmux post-release bumps + + Re-add comments that went missing from `ruff` formatter. + ## tmuxp 1.28.2 (2023-08-20) _Maintenance only, no bug fixes, or new features_ diff --git a/pyproject.toml b/pyproject.toml index 5fc82e25f4..bc9c4eed24 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tmuxp" -version = "1.29.0" +version = "1.29.0post0" description = "tmux session manager" license = "MIT" authors = ["Tony Narlock "] diff --git a/src/tmuxp/__about__.py b/src/tmuxp/__about__.py index e6f858e306..43cd96dff8 100644 --- a/src/tmuxp/__about__.py +++ b/src/tmuxp/__about__.py @@ -1,6 +1,6 @@ __title__ = "tmuxp" __package_name__ = "tmuxp" -__version__ = "1.29.0" +__version__ = "1.29.0post0" __description__ = "tmux session manager" __email__ = "tony@git-pull.com" __author__ = "Tony Narlock"