From 94a92c38fa786cf5d17da9886364d2ef754a026a Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Thu, 3 Oct 2024 10:32:55 +0100 Subject: [PATCH 1/2] version bump --- CHANGELOG.md | 3 ++- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9af5065a1..e9fd0429b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## Unreleased +## [0.82.0] - 2024-10-03 ### Fixed @@ -2424,6 +2424,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.82.0]: https://github.com/Textualize/textual/compare/v0.81.0...v0.82.0 [0.81.0]: https://github.com/Textualize/textual/compare/v0.80.1...v0.81.0 [0.80.1]: https://github.com/Textualize/textual/compare/v0.80.0...v0.80.1 [0.80.0]: https://github.com/Textualize/textual/compare/v0.79.0...v0.80.0 diff --git a/pyproject.toml b/pyproject.toml index c2a0c63605..400ad36099 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "textual" -version = "0.81.0" +version = "0.82.0" homepage = "https://github.com/Textualize/textual" repository = "https://github.com/Textualize/textual" documentation = "https://textual.textualize.io/" From 0b6c8fef6e0afbf51e332a48ee2db3669ab60cb3 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Thu, 3 Oct 2024 10:35:36 +0100 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e9fd0429b3..39ffcc4d91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Fixed issue with screen not updating when auto_refresh was enabled https://github.com/Textualize/textual/pull/5063 - Fixed issues regarding loading indicator https://github.com/Textualize/textual/pull/5079 +- Fixed issues with inspecting the lazy loaded widgets module https://github.com/Textualize/textual/pull/5080 ### Added