@@ -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.45 .x (Yet to be released)
12+ ## libtmux 0.46 .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+ ## libtmux 0.45.0 (2025-02-23)
19+
1820### Breaking Changes
1921
2022#### Test helpers: Refactor
2123
22- Test helper functionality has been split into focused modules (#XXX ):
24+ Test helper functionality has been split into focused modules (#578 ):
2325
2426- ` libtmux.test ` module split into:
2527 - ` libtmux.test.constants ` : Test-related constants (` TEST_SESSION_PREFIX ` , etc.)
@@ -30,7 +32,7 @@ Test helper functionality has been split into focused modules (#XXX):
3032** Breaking** : Import paths have changed. Update imports:
3133
3234``` python
33- # Old (0.45 .x and earlier)
35+ # Old (0.44 .x and earlier)
3436from libtmux.test import (
3537 TEST_SESSION_PREFIX ,
3638 get_test_session_name,
@@ -43,7 +45,7 @@ from libtmux.test import (
4345```
4446
4547``` python
46- # New (0.46 .0+)
48+ # New (0.45 .0+)
4749from libtmux.test.constants import TEST_SESSION_PREFIX
4850from libtmux.test.environment import EnvironmentVarGuard
4951from libtmux.test.random import get_test_session_name, get_test_window_name, namer
0 commit comments