Skip to content

Commit 8e4a901

Browse files
committed
Bump version to 2025.1.3
1 parent 35d863e commit 8e4a901

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

pudb/debugger.py

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

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

2717+
"\nChanges in version 2025.1.3:\n\n"
2718+
"- Actually fix module picking\n"
2719+
"- Fix bugs introduced by typing improvements\n"
2720+
27172721
"\nChanges in version 2025.1.2:\n\n"
27182722
"- Fix module picking\n"
27192723
"- Work towards improved type checking coverage\n"

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.2"
7+
version = "2025.1.3"
88
description = "A full-screen, console-based Python debugger"
99
readme = "README.rst"
1010
license = "MIT"

0 commit comments

Comments
 (0)