diff --git a/CHANGES b/CHANGES index 5902f33aee..8aef6e7792 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.20.x (unreleased) +## tmuxp 1.21.x (unreleased) +## tmuxp 1.20.0 (2022-12-26) + ### Breaking change - libtmux 0.16 -> 0.17 (#850) diff --git a/pyproject.toml b/pyproject.toml index 05c6fe0543..eb232fe071 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tmuxp" -version = "1.20.0a0" +version = "1.20.0" description = "tmux session manager" license = "MIT" authors = ["Tony Narlock "] diff --git a/src/tmuxp/__about__.py b/src/tmuxp/__about__.py index 51350bc18b..aca829ac76 100644 --- a/src/tmuxp/__about__.py +++ b/src/tmuxp/__about__.py @@ -1,6 +1,6 @@ __title__ = "tmuxp" __package_name__ = "tmuxp" -__version__ = "1.20.0a0" +__version__ = "1.20.0" __description__ = "tmux session manager" __email__ = "tony@git-pull.com" __author__ = "Tony Narlock"