diff --git a/CHANGES b/CHANGES index 5cb4c75de..19d710e89 100644 --- a/CHANGES +++ b/CHANGES @@ -9,12 +9,14 @@ To install via [pip](https://pip.pypa.io/en/stable/), use: $ pip install --user --upgrade --pre libtmux ``` -## libtmux 0.31.x (Yet to be released) +## libtmux 0.32.x (Yet to be released) - _Future release notes will be placed here_ +## libtmux 0.31.0 (2024-02-17) + ### Cleanups (#527) - Streamline `{Server,Session,Window,Pane}.cmd()`, across all usages to: diff --git a/pyproject.toml b/pyproject.toml index 8e5aa3538..ab4c3d906 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "libtmux" -version = "0.30.2" +version = "0.31.0" 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 753f4850b..b28babeba 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.30.2" +__version__ = "0.31.0" __description__ = "Typed scripting library / ORM / API wrapper for tmux" __email__ = "tony@git-pull.com" __author__ = "Tony Narlock"