diff --git a/CHANGES b/CHANGES index bcbf99ed5a..128a3f0a84 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.32.x (unreleased) +## tmuxp 1.33.x (unreleased) +## tmuxp 1.32.0 (2023-11-19) + +_Maintenance only, no bug fixes or new features_ + ### Packaging - Move pytest configuration to `pyproject.toml` (#886) diff --git a/pyproject.toml b/pyproject.toml index e4fce16f22..94f2478fdf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tmuxp" -version = "1.31.0" +version = "1.32.0" description = "tmux session manager" license = "MIT" authors = ["Tony Narlock "] diff --git a/src/tmuxp/__about__.py b/src/tmuxp/__about__.py index b2334f9067..d51ebc92e9 100644 --- a/src/tmuxp/__about__.py +++ b/src/tmuxp/__about__.py @@ -1,6 +1,6 @@ __title__ = "tmuxp" __package_name__ = "tmuxp" -__version__ = "1.31.0" +__version__ = "1.32.0" __description__ = "tmux session manager" __email__ = "tony@git-pull.com" __author__ = "Tony Narlock"