Skip to content

Commit a1321c6

Browse files
committed
Bump version to 2025.1.1
1 parent b6fba12 commit a1321c6

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

pudb/debugger.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2697,7 +2697,7 @@ def event_loop(self, toplevel: urwid.Widget | None = None):
26972697
self.message("Package 'pygments' not found. "
26982698
"Syntax highlighting disabled.")
26992699

2700-
WELCOME_LEVEL = "e050" # noqa
2700+
WELCOME_LEVEL = "e052" # noqa
27012701
if CONFIG["seen_welcome"] < WELCOME_LEVEL:
27022702
CONFIG["seen_welcome"] = WELCOME_LEVEL
27032703
from pudb import VERSION
@@ -2714,6 +2714,12 @@ def event_loop(self, toplevel: urwid.Widget | None = None):
27142714
"(invoked by hitting '?' after this message) should get you "
27152715
"on your way.\n"
27162716

2717+
"\nChanges in version 2025.1.1:\n\n"
2718+
"- Fix a call to format_exception (Lumír 'Frenzy' Balhar)\n"
2719+
"- Fix set_trace(paused=False) (Aaron Meurer)\n"
2720+
"- Expose post_mortem in pudb.remote (Gabriel Pettier)\n"
2721+
"- Work towards improved type checking coverage\n"
2722+
27172723
"\nChanges in version 2025.1:\n\n"
27182724
"- Fix compatibility with Urwid 3\n"
27192725
"- Allow leaving output screen with single key press "

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "pudb"
7-
version = "2025.1"
7+
version = "2025.1.1"
88
description = "A full-screen, console-based Python debugger"
99
readme = "README.rst"
1010
license = "MIT"

0 commit comments

Comments
 (0)