diff --git a/CHANGELOG.md b/CHANGELOG.md index 68e439e28c..20ec85bd5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [14.3.4] - 2026-04-11 ### Changed - Improved import time with lazy loading https://github.com/Textualize/rich/pull/4070 +- Changed link id generation to avoid random number generation at runtime https://github.com/Textualize/rich/pull/3845 ## [14.3.3] - 2026-02-19 @@ -2202,6 +2203,10 @@ Major version bump for a breaking change to `Text.stylize signature`, which corr - First official release, API still to be stabilized + +[14.3.4]: https://github.com/textualize/rich/compare/v14.3.3...v14.3.4 +[14.3.3]: https://github.com/textualize/rich/compare/v14.3.2...v14.3.3 +[14.3.2]: https://github.com/textualize/rich/compare/v14.3.1...v14.3.2 [14.3.1]: https://github.com/textualize/rich/compare/v14.3.0...v14.3.1 [14.3.0]: https://github.com/textualize/rich/compare/v14.2.0...v14.3.0 [14.2.0]: https://github.com/textualize/rich/compare/v14.1.0...v14.2.0 diff --git a/pyproject.toml b/pyproject.toml index a98f6585d1..85f0f353b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "rich" homepage = "https://github.com/Textualize/rich" documentation = "https://rich.readthedocs.io/en/latest/" -version = "14.3.3" +version = "14.3.4" description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" authors = ["Will McGugan "] license = "MIT"