File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
7
7
8
- ## 2.0.2
8
+ ## 2.0.2 - 2025-02-16
9
9
10
10
### Fixed
11
11
12
12
- Fixed OptionList.add_options exhausting iterator https://github.com/Textualize/textual/pull/5540
13
+ - Fixed screen not refreshing after pop https://github.com/Textualize/textual/pull/5543
13
14
14
- ## 2.0.1 - 2024 -02-16
15
+ ## 2.0.1 - 2025 -02-16
15
16
16
17
### Fixed
17
18
@@ -2728,6 +2729,9 @@ https://textual.textualize.io/blog/2022/11/08/version-040/#version-040
2728
2729
- New handler system for messages that doesn't require inheritance
2729
2730
- Improved traceback handling
2730
2731
2732
+ [ 2.0.2 ] : https://github.com/Textualize/textual/compare/v2.0.1...v2.0.2
2733
+ [ 2.0.1 ] : https://github.com/Textualize/textual/compare/v2.0.0...v2.0.1
2734
+ [ 2.0.0 ] : https://github.com/Textualize/textual/compare/v1.0.0...v2.0.0
2731
2735
[ 1.0.0 ] : https://github.com/Textualize/textual/compare/v0.89.1...v1.0.0
2732
2736
[ 0.89.1 ] : https://github.com/Textualize/textual/compare/v0.89.0...v0.89.1
2733
2737
[ 0.89.0 ] : https://github.com/Textualize/textual/compare/v0.88.1...v0.89.0
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " textual"
3
- version = " 2.0.1 "
3
+ version = " 2.0.2 "
4
4
homepage = " https://github.com/Textualize/textual"
5
5
repository = " https://github.com/Textualize/textual"
6
6
documentation = " https://textual.textualize.io/"
Original file line number Diff line number Diff line change @@ -1333,6 +1333,7 @@ def _on_screen_resume(self) -> None:
1333
1333
self ._compositor_refresh ()
1334
1334
self .app .stylesheet .update (self )
1335
1335
self ._refresh_layout (size )
1336
+ self .refresh ()
1336
1337
1337
1338
def _on_screen_suspend (self ) -> None :
1338
1339
"""Screen has suspended."""
You can’t perform that action at this time.
0 commit comments