diff --git a/CHANGES b/CHANGES index 928778a91e..b4249a4fe0 100644 --- a/CHANGES +++ b/CHANGES @@ -15,10 +15,12 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force // Usage: tmuxp@next load yoursession ``` -## tmuxp 1.42.0 (unreleased) +## tmuxp 1.43.0 (unreleased) +## tmuxp 1.42.0 (2024-03-17) + ### Breaking changes - libtmux: 0.33.0 -> 0.34.0 (#919) diff --git a/pyproject.toml b/pyproject.toml index 6e92c27c9a..5deabfe768 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tmuxp" -version = "1.41.1" +version = "1.42.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 23348828ff..4a1977ee37 100644 --- a/src/tmuxp/__about__.py +++ b/src/tmuxp/__about__.py @@ -2,7 +2,7 @@ __title__ = "tmuxp" __package_name__ = "tmuxp" -__version__ = "1.41.1" +__version__ = "1.42.0" __description__ = "tmux session manager" __email__ = "tony@git-pull.com" __author__ = "Tony Narlock"