Skip to content

Commit 7e3b057

Browse files
committed
Tag v0.17.0 (API overhaul)
1 parent f5c3611 commit 7e3b057

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
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.17.x (unreleased)
11+
## libtmux 0.18.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.17.0 (2022-12-26)
18+
1719
### Breaking changes (#426)
1820

1921
- Finding objects / relations

MIGRATION

+7-9
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,13 @@ well.
1919
[tracker]: https://github.com/tmux-python/libtmux/discussions
2020
```
2121

22-
## 0.17.x: Simplified attributes
22+
## Next release
23+
24+
_Migration instructions for the upcoming release will be added here_
25+
26+
<!-- Maintainers and contributors: insert migration notes for the next release here -->
27+
28+
## 0.17.0: Simplified attributes (2022-12-26)
2329

2430
### Finding objects / relations
2531

@@ -34,8 +40,6 @@ well.
3440
- If not found and not `default`, raises {exc}`~libtmux._internal.query_list.ObjectDoesNotExist`
3541
- If multiple objects found, raises {exc}`~libtmux._internal.query_list.MultipleObjectsReturned`
3642

37-
38-
3943
- 0.16 and below: `session.where({'window_name': my_window})`
4044

4145
0.17 and after: {meth}`session.windows.filter(window_name=my_window) <libtmux.Session.windows>`
@@ -52,12 +56,6 @@ well.
5256

5357
0.17 and after: `getattr(window, 'id', None)`
5458

55-
## Next release
56-
57-
_Migration instructions for the upcoming release will be added here_
58-
59-
<!-- Maintainers and contributors: insert migration notes for the next release here -->
60-
6159
<!---
6260
# vim: set filetype=markdown:
6361
-->

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.17.0a1"
3+
version = "0.17.0"
44
description = "Typed scripting library / ORM / API wrapper for tmux"
55
license = "MIT"
66
authors = ["Tony Narlock <[email protected]>"]

src/libtmux/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__title__ = "libtmux"
22
__package_name__ = "libtmux"
3-
__version__ = "0.17.0a1"
3+
__version__ = "0.17.0"
44
__description__ = "Typed scripting library / ORM / API wrapper for tmux"
55
__email__ = "[email protected]"
66
__author__ = "Tony Narlock"

0 commit comments

Comments
 (0)