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"