Skip to content

Commit e961eae

Browse files
committed
Tag v0.44.0 (Add context managers via #566)
1 parent 11e2597 commit e961eae

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

CHANGES

+7-5
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,19 @@ To install via [pip](https://pip.pypa.io/en/stable/), use:
99
$ pip install --user --upgrade --pre libtmux
1010
```
1111

12-
## libtmux 0.44.x (Yet to be released)
12+
## libtmux 0.45.x (Yet to be released)
1313

1414
<!-- To maintainers and contributors: Please add notes for the forthcoming version below -->
1515

1616
- _Future release notes will be placed here_
1717

18-
### Features
18+
## libtmux 0.44.0 (2025-02-16)
19+
20+
### New Features
1921

20-
#### Context Managers for tmux Objects (#566)
22+
#### Context Managers support (#566)
2123

22-
Added context manager support for all main tmux objects:
24+
Added context manager support for all major object types:
2325

2426
- `Server`: Automatically kills the server when exiting the context
2527
- `Session`: Automatically kills the session when exiting the context
@@ -42,7 +44,7 @@ This makes it easier to write clean, safe code that properly cleans up tmux reso
4244

4345
## libtmux 0.43.0 (2025-02-15)
4446

45-
### Features
47+
### New Features
4648

4749
#### Server Initialization Callbacks
4850

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "libtmux"
3-
version = "0.43.0"
3+
version = "0.44.0"
44
description = "Typed library that provides an ORM wrapper for tmux, a terminal multiplexer."
55
requires-python = ">=3.9,<4.0"
66
authors = [

src/libtmux/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
__title__ = "libtmux"
66
__package_name__ = "libtmux"
7-
__version__ = "0.43.0"
7+
__version__ = "0.44.0"
88
__description__ = "Typed scripting library / ORM / API wrapper for tmux"
99
__email__ = "tony@git-pull.com"
1010
__author__ = "Tony Narlock"

uv.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)