From 2afd0c8d6291259bcfdc18844a86627c8dffcddd Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Mon, 4 Sep 2023 07:07:39 -0500 Subject: [PATCH] Tag v1.30.0a0 (ruff improvements from #879) --- CHANGES | 6 +++++- pyproject.toml | 2 +- src/tmuxp/__about__.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 7a0b4a427a..9f549a2f9e 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.30.x (unreleased) +## tmuxp 1.31.x (unreleased) +## tmuxp 1.31.0 (unreleased) + +_Maintenance only, no bug fixes, or new features_ + ### Development - Code quality improved via [ruff] rules (#879) diff --git a/pyproject.toml b/pyproject.toml index e90bba676a..43a136aa97 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tmuxp" -version = "1.29.1" +version = "1.30.0a0" description = "tmux session manager" license = "MIT" authors = ["Tony Narlock "] diff --git a/src/tmuxp/__about__.py b/src/tmuxp/__about__.py index 82a8badebd..234d647f62 100644 --- a/src/tmuxp/__about__.py +++ b/src/tmuxp/__about__.py @@ -1,6 +1,6 @@ __title__ = "tmuxp" __package_name__ = "tmuxp" -__version__ = "1.29.1" +__version__ = "1.30.0a0" __description__ = "tmux session manager" __email__ = "tony@git-pull.com" __author__ = "Tony Narlock"