Skip to content

Commit a24a67f

Browse files
committed
Tag v0.26.0 (linting and docstring improvements, see #514)
1 parent 7a93c9a commit a24a67f

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
lines changed

Diff for: CHANGES

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

11-
## libtmux 0.26.x (unreleased)
11+
## libtmux 0.27.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.26.0 (2024-02-06)
18+
19+
### Breaking change
20+
21+
- `get_by_id()` (already deprecated) keyword argument renamed from `id` to
22+
`Server.get_by_id(session_id)`, `Session.get_by_id(window_id)`, and `Window.get_by_id(pane_id)` (#514)
23+
1724
### Documentation
1825

1926
- Various docstring fixes and tweaks (#514)
@@ -24,18 +31,18 @@ $ pip install --user --upgrade --pre libtmux
2431

2532
- Add flake8-commas (COM)
2633

27-
- https://docs.astral.sh/ruff/rules/#flake8-commas-com
28-
- https://pypi.org/project/flake8-commas/
34+
- https://docs.astral.sh/ruff/rules/#flake8-commas-com
35+
- https://pypi.org/project/flake8-commas/
2936

3037
- Add flake8-builtins (A)
3138

32-
- https://docs.astral.sh/ruff/rules/#flake8-builtins-a
33-
- https://pypi.org/project/flake8-builtins/
39+
- https://docs.astral.sh/ruff/rules/#flake8-builtins-a
40+
- https://pypi.org/project/flake8-builtins/
3441

3542
- Add flake8-errmsg (EM)
3643

37-
- https://docs.astral.sh/ruff/rules/#flake8-errmsg-em
38-
- https://pypi.org/project/flake8-errmsg/
44+
- https://docs.astral.sh/ruff/rules/#flake8-errmsg-em
45+
- https://pypi.org/project/flake8-errmsg/
3946

4047
### CI
4148

Diff for: 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.25.0"
3+
version = "0.26.0"
44
description = "Typed library that provides an ORM wrapper for tmux, a terminal multiplexer."
55
license = "MIT"
66
authors = ["Tony Narlock <[email protected]>"]

Diff for: 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.25.0"
4+
__version__ = "0.26.0"
55
__description__ = "Typed scripting library / ORM / API wrapper for tmux"
66
__email__ = "[email protected]"
77
__author__ = "Tony Narlock"

0 commit comments

Comments
 (0)