diff --git a/CHANGES b/CHANGES index a1edaefe59f..339cc54a80f 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 e08f9335ddb..a658032a83a 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 05efa849316..55ee028f022 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"