Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Textual-Window Changelog

## [0.8.0] 2025-07-31

### Changed

- Changed `from textual._compose import compose` to `from textual.app import compose` in `window.py` to use the newly exposed `compose` function in Textual 5.1.0+.
- Increased required Textual version back up to 5.1.0 because of newly exposed import. Textual-Window can take advantage of the newest Textual features going forward. Version 0.7.1 was a temporary downgrade to maintain compatibility with Textual 3.x.x for those that still need it.
- Enhanced `noxfile.py` to test against specific minor versions of Textual (e.g., 5.1.0, 5.2.0) to ensure compatibility with the latest features and bug fixes (#12 by @KRRT7).

## [0.7.1] 2025-07-30

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "textual-window"
version = "0.7.1"
version = "0.8.0"
description = "A Textual widget for a floating, draggable window and included window bar/manager system."
readme = "README.md"
requires-python = ">=3.9"
Expand Down