From 959c55bb3388346820ef6f77e5227bffaabba29b Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sun, 21 Apr 2024 05:58:08 -0500 Subject: [PATCH] Tag v0.34.0 - Test and doc improvements --- CHANGES | 6 +++++- pyproject.toml | 2 +- src/libtmux/__about__.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 53ba0bdd1..cd8ead737 100644 --- a/CHANGES +++ b/CHANGES @@ -9,12 +9,16 @@ To install via [pip](https://pip.pypa.io/en/stable/), use: $ pip install --user --upgrade --pre libtmux ``` -## libtmux 0.37.x (Yet to be released) +## libtmux 0.38.x (Yet to be released) - _Future release notes will be placed here_ +## libtmux 0.37.0 (04-21-2024) + +_Maintenance only, no bug fixes or new features_ + ### Testing - Add `pytest-xdist` ([PyPI](https://pypi.org/project/pytest-xdist/), [GitHub](https://github.com/pytest-dev/pytest-xdist)) for parallel testing (#522). diff --git a/pyproject.toml b/pyproject.toml index e317a2457..9f23df59b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "libtmux" -version = "0.36.0" +version = "0.37.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 b02cb9e84..c79743180 100644 --- a/src/libtmux/__about__.py +++ b/src/libtmux/__about__.py @@ -2,7 +2,7 @@ __title__ = "libtmux" __package_name__ = "libtmux" -__version__ = "0.36.0" +__version__ = "0.37.0" __description__ = "Typed scripting library / ORM / API wrapper for tmux" __email__ = "tony@git-pull.com" __author__ = "Tony Narlock"