From f384ee9f66c27f292cad796a7388778519c11fe1 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 17 Feb 2024 07:39:05 -0600 Subject: [PATCH] Tag v0.31.0post0 (doc fixes) --- CHANGES | 4 ++++ pyproject.toml | 2 +- src/libtmux/__about__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index d3c75912c..28ca41b67 100644 --- a/CHANGES +++ b/CHANGES @@ -45,6 +45,10 @@ $ pip install --user --upgrade --pre libtmux - {meth}`Window.cmd()` - {meth}`Pane.cmd()` +### Post-release: v0.31.0post0 (2024-02-17) + +- Documentation updates + ## libtmux 0.30.2 (2024-02-16) ### Development diff --git a/pyproject.toml b/pyproject.toml index ab4c3d906..b0bb28724 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "libtmux" -version = "0.31.0" +version = "0.31.0post0" description = "Typed library that provides an ORM wrapper for tmux, a terminal multiplexer." license = "MIT" authors = ["Tony Narlock "] diff --git a/src/libtmux/__about__.py b/src/libtmux/__about__.py index b28babeba..07d3c3365 100644 --- a/src/libtmux/__about__.py +++ b/src/libtmux/__about__.py @@ -1,7 +1,7 @@ """Metadata package for libtmux.""" __title__ = "libtmux" __package_name__ = "libtmux" -__version__ = "0.31.0" +__version__ = "0.31.0post0" __description__ = "Typed scripting library / ORM / API wrapper for tmux" __email__ = "tony@git-pull.com" __author__ = "Tony Narlock"