From bc11e92606f1332e0f955981a8d288c7eec18ef8 Mon Sep 17 00:00:00 2001 From: Jonathan Slenders Date: Thu, 20 Nov 2025 21:03:24 +0000 Subject: [PATCH] Release 3.0.32. --- CHANGELOG | 12 +++++++++++- pyproject.toml | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 8a07ede..838303f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,13 +1,23 @@ CHANGELOG ========= +3.0.32: 2025-11-20 +------------------ + +Fixes: +- Use ANSI colors (instead of RGB colors) for the default code theme. This + improves the chances of having a better contrast with the background color, + because we now use what is configured in the terminal emulator. The theme is + called 'default-ansi' and exists alongside 'default'. + + 3.0.31: 2025-08-27 ------------------ Fixes: - Add `patch_stdout_raw` parameter to `embed()`. - Fix repl.min_brightness and repl.max_brightness config in history. -- Fix positioning of exit confirmation (compatibilitiy with latest prompt_toolkit). +- Fix positioning of exit confirmation (compatibility with latest prompt_toolkit). 3.0.30: 2025-04-15 diff --git a/pyproject.toml b/pyproject.toml index f1f3a85..cb6d1ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ptpython" -version = "3.0.31" +version = "3.0.32" description = "Python REPL build on top of prompt_toolkit" readme = "README.rst" authors = [{ name = "Jonathan Slenders" }]