Merge pull request #1874 from Textualize/bump0.12.0

Bump0.12.0
This commit is contained in:
Will McGugan
2023-02-24 15:32:24 +00:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## [0.12.0] - Unreleased
## [0.12.0] - 2023-02-24
### Added
@@ -500,6 +500,7 @@ https://textual.textualize.io/blog/2022/11/08/version-040/#version-040
- New handler system for messages that doesn't require inheritance
- Improved traceback handling
[0.12.0]: https://github.com/Textualize/textual/compare/v0.11.1...v0.12.0
[0.11.1]: https://github.com/Textualize/textual/compare/v0.11.0...v0.11.1
[0.11.0]: https://github.com/Textualize/textual/compare/v0.10.1...v0.11.0
[0.10.1]: https://github.com/Textualize/textual/compare/v0.10.0...v0.10.1

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "textual"
version = "0.11.1"
version = "0.12.0"
homepage = "https://github.com/Textualize/textual"
description = "Modern Text User Interface framework"
authors = ["Will McGugan <will@textualize.io>"]

View File

@@ -39,7 +39,6 @@ from .walk import walk_breadth_first, walk_depth_first
if TYPE_CHECKING:
from .app import App
from .messages import Message
from .css.query import DOMQuery
from .screen import Screen
from .widget import Widget