diff --git a/CHANGES b/CHANGES index a85eff48f2..a1ce1b8e3e 100644 --- a/CHANGES +++ b/CHANGES @@ -15,16 +15,21 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force // Usage: tmuxp@next load yoursession ``` -## tmuxp 1.24.x (unreleased) +## tmuxp 1.25.x (unreleased) +## tmuxp 1.24.0 (2022-12-30) + +_Maintenance only, no bug fixes or features_ + ### Internal improvements - libtmux: 0.18.1 -> 0.18.2 Fix for starting new sessions at default socket / temporary directory ([libtmux#464](https://github.com/tmux-python/libtmux/pull/464)) + - CLI Tests: Refactor `tests/cli` (#858) - Fix resolution of direcotries diff --git a/pyproject.toml b/pyproject.toml index 8a0ff27b6c..3a087537ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tmuxp" -version = "1.24.0a0" +version = "1.24.0" description = "tmux session manager" license = "MIT" authors = ["Tony Narlock "] diff --git a/src/tmuxp/__about__.py b/src/tmuxp/__about__.py index cf02ab33d6..c3b6312ecc 100644 --- a/src/tmuxp/__about__.py +++ b/src/tmuxp/__about__.py @@ -1,6 +1,6 @@ __title__ = "tmuxp" __package_name__ = "tmuxp" -__version__ = "1.24.0a0" +__version__ = "1.24.0" __description__ = "tmux session manager" __email__ = "tony@git-pull.com" __author__ = "Tony Narlock"