diff --git a/CHANGES b/CHANGES index c11549aab5a..c3dd1884d06 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.34.x (unreleased) +## tmuxp 1.35.x (unreleased) +## tmuxp 1.34.0 (2023-12-21) + +_Maintenance only, no bug fixes or new features_ + ### Breaking changes - libtmux: 0.24.1 -> 0.25.0, maintenance release (#896) diff --git a/pyproject.toml b/pyproject.toml index e95fdb8ed3a..55241e53b6e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tmuxp" -version = "1.33.0" +version = "1.34.0" description = "tmux session manager" license = "MIT" authors = ["Tony Narlock "] diff --git a/src/tmuxp/__about__.py b/src/tmuxp/__about__.py index 24fa377f276..05efa849316 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.33.0" +__version__ = "1.34.0" __description__ = "tmux session manager" __email__ = "tony@git-pull.com" __author__ = "Tony Narlock"