File tree Expand file tree Collapse file tree 5 files changed +13
-11
lines changed
Filter options
Expand file tree Collapse file tree 5 files changed +13
-11
lines changed
Original file line number Diff line number Diff line change @@ -9,17 +9,19 @@ To install via [pip](https://pip.pypa.io/en/stable/), use:
9
9
$ pip install --user --upgrade --pre libtmux
10
10
```
11
11
12
- ## libtmux 0.45 .x (Yet to be released)
12
+ ## libtmux 0.46 .x (Yet to be released)
13
13
14
14
<!-- To maintainers and contributors: Please add notes for the forthcoming version below -->
15
15
16
16
- _ Future release notes will be placed here_
17
17
18
+ ## libtmux 0.45.0 (2025-02-23)
19
+
18
20
### Breaking Changes
19
21
20
22
#### Test helpers: Refactor
21
23
22
- Test helper functionality has been split into focused modules (#XXX ):
24
+ Test helper functionality has been split into focused modules (#578 ):
23
25
24
26
- ` libtmux.test ` module split into:
25
27
- ` libtmux.test.constants ` : Test-related constants (` TEST_SESSION_PREFIX ` , etc.)
@@ -30,7 +32,7 @@ Test helper functionality has been split into focused modules (#XXX):
30
32
** Breaking** : Import paths have changed. Update imports:
31
33
32
34
``` python
33
- # Old (0.45 .x and earlier)
35
+ # Old (0.44 .x and earlier)
34
36
from libtmux.test import (
35
37
TEST_SESSION_PREFIX ,
36
38
get_test_session_name,
@@ -43,7 +45,7 @@ from libtmux.test import (
43
45
```
44
46
45
47
``` python
46
- # New (0.46 .0+)
48
+ # New (0.45 .0+)
47
49
from libtmux.test.constants import TEST_SESSION_PREFIX
48
50
from libtmux.test.environment import EnvironmentVarGuard
49
51
from libtmux.test.random import get_test_session_name, get_test_window_name, namer
Original file line number Diff line number Diff line change @@ -25,11 +25,11 @@ _Detailed migration steps for the next version will be posted here._
25
25
26
26
<!-- To the maintainers and contributors: please add migration details for the upcoming release here -->
27
27
28
- ## libtmux 0.45.x (Yet to be released )
28
+ ## libtmux 0.45.0 (2025-02-23 )
29
29
30
30
### Test helpers: Module moves
31
31
32
- Test helper functionality has been split into focused modules (#XXX ):
32
+ Test helper functionality has been split into focused modules (#578 ):
33
33
34
34
- ` libtmux.test ` module split into:
35
35
- ` libtmux.test.constants ` : Test-related constants (` TEST_SESSION_PREFIX ` , etc.)
@@ -40,7 +40,7 @@ Test helper functionality has been split into focused modules (#XXX):
40
40
** Breaking** : Import paths have changed. Update imports:
41
41
42
42
``` python
43
- # Old (0.45 .x and earlier)
43
+ # Old (0.44 .x and earlier)
44
44
from libtmux.test import (
45
45
TEST_SESSION_PREFIX ,
46
46
get_test_session_name,
@@ -53,7 +53,7 @@ from libtmux.test import (
53
53
```
54
54
55
55
``` python
56
- # New (0.46 .0+)
56
+ # New (0.45 .0+)
57
57
from libtmux.test.constants import TEST_SESSION_PREFIX
58
58
from libtmux.test.environment import EnvironmentVarGuard
59
59
from libtmux.test.random import get_test_session_name, get_test_window_name, namer
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " libtmux"
3
- version = " 0.44.2 "
3
+ version = " 0.45.0 "
4
4
description = " Typed library that provides an ORM wrapper for tmux, a terminal multiplexer."
5
5
requires-python = " >=3.9,<4.0"
6
6
authors = [
Original file line number Diff line number Diff line change 4
4
5
5
__title__ = "libtmux"
6
6
__package_name__ = "libtmux"
7
- __version__ = "0.44.2 "
7
+ __version__ = "0.45.0 "
8
8
__description__ = "Typed scripting library / ORM / API wrapper for tmux"
9
9
__email__ = "tony@git-pull.com"
10
10
__author__ = "Tony Narlock"
You can’t perform that action at this time.
0 commit comments