From c23aa92293f28df4df12cb465a5e24b3f18f6691 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Fri, 12 Apr 2024 19:08:29 -0500 Subject: [PATCH] Tag v1.46.0 (fix from #926) --- CHANGES | 4 +++- pyproject.toml | 2 +- src/tmuxp/__about__.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 9d92e30a23..62a7b3f3ed 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.46.0 (unreleased) +## tmuxp 1.47.0 (unreleased) +## tmuxp 1.46.0 (2024-04-12) + ### Breaking change #### Workspace builder now detects terminal size (#926) diff --git a/pyproject.toml b/pyproject.toml index ca2b9e8958..f27c7a621e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tmuxp" -version = "1.46.0a0" +version = "1.46.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 f2c0df1563..fe13baa26d 100644 --- a/src/tmuxp/__about__.py +++ b/src/tmuxp/__about__.py @@ -2,7 +2,7 @@ __title__ = "tmuxp" __package_name__ = "tmuxp" -__version__ = "1.46.0a0" +__version__ = "1.46.0" __description__ = "tmux session manager" __email__ = "tony@git-pull.com" __author__ = "Tony Narlock"