File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
Filter options
Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ This project adheres to [Semantic Versioning](https://semver.org/) since version
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 18.0.0] - 2025-04-08
10
+
9
11
### Changed
10
12
11
13
- ` Console.print ` now accepts ` height ` and ` width ` keywords and has renamed ` string ` to ` text ` .
Original file line number Diff line number Diff line change @@ -1090,7 +1090,7 @@ def print( # noqa: PLR0913
1090
1090
1091
1091
`x` and `y` are now always used as an absolute position for negative values.
1092
1092
1093
- .. versionchanged:: Unreleased
1093
+ .. versionchanged:: 18.0
1094
1094
1095
1095
Deprecated giving `string`, `fg`, `bg`, and `bg_blend` as positional arguments.
1096
1096
@@ -1285,7 +1285,7 @@ def draw_frame( # noqa: PLR0913
1285
1285
.. versionchanged:: 13.0
1286
1286
`x` and `y` are now always used as an absolute position for negative values.
1287
1287
1288
- .. versionchanged:: Unreleased
1288
+ .. versionchanged:: 18.0
1289
1289
Deprecated `clear`, `fg`, `bg`, and `bg_blend` being given as positional arguments.
1290
1290
These should be keyword arguments only.
1291
1291
@@ -1418,7 +1418,7 @@ def draw_rect( # noqa: PLR0913
1418
1418
.. versionchanged:: 13.0
1419
1419
`x` and `y` are now always used as an absolute position for negative values.
1420
1420
1421
- .. versionchanged:: Unreleased
1421
+ .. versionchanged:: 18.0
1422
1422
Deprecated `ch`, `fg`, `bg`, and `bg_blend` being given as positional arguments.
1423
1423
These should be keyword arguments only.
1424
1424
"""
Original file line number Diff line number Diff line change @@ -1252,7 +1252,7 @@ class EventDispatch(Generic[T]):
1252
1252
This is now a generic class.
1253
1253
The type hints at the return value of :any:`dispatch` and the `ev_*` methods.
1254
1254
1255
- .. deprecated:: Unreleased
1255
+ .. deprecated:: 18.0
1256
1256
Event dispatch should be handled via a single custom method in a Protocol instead of this class.
1257
1257
Note that events can and should be handled using Python's `match` statement.
1258
1258
You can’t perform that action at this time.
0 commit comments