Skip to content

Commit 1f252c5

Browse files
committed
Tag v0.29.0: Use DeprecationWarning and ignore in pytest (#526)
1 parent 550bd55 commit 1f252c5

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGES

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@ To install the unreleased libtmux version, see [developmental releases](https://
88
$ pip install --user --upgrade --pre libtmux
99
```
1010

11-
## libtmux 0.29.x (unreleased)
11+
## libtmux 0.30.x (unreleased)
1212

1313
- _Notes on upcoming releases will be added here_
1414

1515
<!-- Maintainers and contributors: Insert change notes for the next release above -->
1616

17+
## libtmux 0.29.0 (2024-02-16)
18+
1719
#### Bug fixes
1820

1921
- Use {exc}`DeprecationWarning` for APIs set to be deprecated (#526)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "libtmux"
3-
version = "0.28.1"
3+
version = "0.29.0"
44
description = "Typed library that provides an ORM wrapper for tmux, a terminal multiplexer."
55
license = "MIT"
66
authors = ["Tony Narlock <tony@git-pull.com>"]

src/libtmux/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Metadata package for libtmux."""
22
__title__ = "libtmux"
33
__package_name__ = "libtmux"
4-
__version__ = "0.28.1"
4+
__version__ = "0.29.0"
55
__description__ = "Typed scripting library / ORM / API wrapper for tmux"
66
__email__ = "tony@git-pull.com"
77
__author__ = "Tony Narlock"

0 commit comments

Comments
 (0)