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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ 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).

## [14.3.0]

### Added

- Added support for some multi-codepopint glyphs (will fix alignment issues for these characters) https://github.com/Textualize/rich/pull/3930
- Added support for `UNICODE_VERSION` environment variable https://github.com/Textualize/rich/pull/3930

### Changed

- `cells.cell_len` now has a `unicode_version` parameter (that you probably should never change) https://github.com/Textualize/rich/pull/3930

## [14.2.0] - 2025-10-09

### Changed
Expand Down Expand Up @@ -2147,6 +2158,7 @@ Major version bump for a breaking change to `Text.stylize signature`, which corr

- First official release, API still to be stabilized

[14.2.0]: https://github.com/textualize/rich/compare/v14.2.0...v14.3.0
[14.1.0]: https://github.com/textualize/rich/compare/v14.1.0...v14.2.0
[14.0.0]: https://github.com/textualize/rich/compare/v14.0.0...v14.1.0
[14.0.0]: https://github.com/textualize/rich/compare/v13.9.4...v14.0.0
Expand Down
5 changes: 3 additions & 2 deletions rich/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,9 @@ def iter_last(values: Iterable[T]) -> Iterable[Tuple[bool, T]]:
"[b magenta]Hope you enjoy using Rich![/]\n\n"
"Please consider sponsoring me if you get value from my work.\n\n"
"Even the price of a ☕ can brighten my day!\n\n"
"https://github.com/sponsors/willmcgugan",
border_style="red",
"[cyan]https://github.com/sponsors/willmcgugan[/cyan]",
border_style="green",
title="Help ensure Rich is maintained",
padding=(1, 2),
)
)
Loading
Loading