Skip to content

Commit 82411ad

Browse files
authored
version bump (#2799)
* version bump * changelog
1 parent 129bef4 commit 82411ad

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## Unreleased
8+
## [0.28.0] - 2023-06-19
99

1010
### Added
1111

@@ -1060,6 +1060,8 @@ https://textual.textualize.io/blog/2022/11/08/version-040/#version-040
10601060
- New handler system for messages that doesn't require inheritance
10611061
- Improved traceback handling
10621062

1063+
[0.28.0]: https://github.com/Textualize/textual/compare/v0.27.0...v0.28.0
1064+
[0.27.0]: https://github.com/Textualize/textual/compare/v0.26.0...v0.27.0
10631065
[0.26.0]: https://github.com/Textualize/textual/compare/v0.25.0...v0.26.0
10641066
[0.25.0]: https://github.com/Textualize/textual/compare/v0.24.1...v0.25.0
10651067
[0.24.1]: https://github.com/Textualize/textual/compare/v0.24.0...v0.24.1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "textual"
3-
version = "0.27.0"
3+
version = "0.28.0"
44
homepage = "https://github.com/Textualize/textual"
55
description = "Modern Text User Interface framework"
66
authors = ["Will McGugan <[email protected]>"]

src/textual/app.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,9 @@
141141
ComposeResult = Iterable[Widget]
142142
RenderResult = RenderableType
143143

144-
AutopilotCallbackType: TypeAlias = "Callable[[Pilot], Coroutine[Any, Any, None]]"
144+
AutopilotCallbackType: TypeAlias = (
145+
"Callable[[Pilot[object]], Coroutine[Any, Any, None]]"
146+
)
145147
"""Signature for valid callbacks that can be used to control apps."""
146148

147149

0 commit comments

Comments
 (0)