diff --git a/CHANGES b/CHANGES index 93b4431235..ffa1bf2d06 100644 --- a/CHANGES +++ b/CHANGES @@ -35,6 +35,12 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force _Notes on the upcoming release will go here._ +## tmuxp 1.64.2 (2026-03-08) + +### Packaging + +- Fix `__about__.__version__` not updated in 1.64.1 release + ## tmuxp 1.64.1 (2026-03-08) ### Bug fixes diff --git a/pyproject.toml b/pyproject.toml index 0fbcc71110..2fde900121 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "tmuxp" -version = "1.64.1" +version = "1.64.2" description = "Session manager for tmux, which allows users to save and load tmux sessions through simple configuration files." requires-python = ">=3.10,<4.0" authors = [ diff --git a/src/tmuxp/__about__.py b/src/tmuxp/__about__.py index 1cd80a0ee3..aaf0ffb342 100644 --- a/src/tmuxp/__about__.py +++ b/src/tmuxp/__about__.py @@ -4,7 +4,7 @@ __title__ = "tmuxp" __package_name__ = "tmuxp" -__version__ = "1.64.0" +__version__ = "1.64.2" __description__ = "tmux session manager" __email__ = "tony@git-pull.com" __author__ = "Tony Narlock" diff --git a/uv.lock b/uv.lock index 39ff327f7d..1f975d6139 100644 --- a/uv.lock +++ b/uv.lock @@ -1379,7 +1379,7 @@ wheels = [ [[package]] name = "tmuxp" -version = "1.64.1" +version = "1.64.2" source = { editable = "." } dependencies = [ { name = "colorama" },