diff --git a/CHANGELOG.md b/CHANGELOG.md index 509d0aea0..f9438b064 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ 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/). +## [0.88.1] - 2024-11-30 + +### Fixed + +- Fixed excessive rendering of the OptionList https://github.com/Textualize/textual/pull/5311 +- Fixed rendering glitches in Select https://github.com/Textualize/textual/pull/5311 + ## [0.88.0] - 2024-11-29 ### Fixed @@ -2600,6 +2607,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.88.1]: https://github.com/Textualize/textual/compare/v0.88.0...v0.88.1 [0.88.0]: https://github.com/Textualize/textual/compare/v0.87.1...v0.88.0 [0.87.1]: https://github.com/Textualize/textual/compare/v0.87.0...v0.87.1 [0.87.0]: https://github.com/Textualize/textual/compare/v0.86.4...v0.87.0 diff --git a/pyproject.toml b/pyproject.toml index 43ba394be..2049b84fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "textual" -version = "0.88.0" +version = "0.88.1" homepage = "https://github.com/Textualize/textual" repository = "https://github.com/Textualize/textual" documentation = "https://textual.textualize.io/" @@ -9,8 +9,8 @@ description = "Modern Text User Interface framework" authors = ["Will McGugan "] license = "MIT" readme = "README.md" -classifiers = [ - "Development Status :: 4 - Beta", +classifiers = [ + "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Operating System :: Microsoft :: Windows :: Windows 10",