diff --git a/CHANGES b/CHANGES index 9729cb09d1b..2502436bca8 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.26.x (unreleased) +## tmuxp 1.27.x (unreleased) +## tmuxp 1.26.0 (2023-01-15) + +_Maintenance only, no bug fixes or features_ + ### Internal improvements - libtmux 0.19.1 -> 0.20.0 (#863) diff --git a/pyproject.toml b/pyproject.toml index c08225f3555..864e3110692 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tmuxp" -version = "1.25.0" +version = "1.26.0" description = "tmux session manager" license = "MIT" authors = ["Tony Narlock "] diff --git a/src/tmuxp/__about__.py b/src/tmuxp/__about__.py index 78d179918fe..e7a916d9272 100644 --- a/src/tmuxp/__about__.py +++ b/src/tmuxp/__about__.py @@ -1,6 +1,6 @@ __title__ = "tmuxp" __package_name__ = "tmuxp" -__version__ = "1.25.0" +__version__ = "1.26.0" __description__ = "tmux session manager" __email__ = "tony@git-pull.com" __author__ = "Tony Narlock"