Skip to content

Commit e47c406

Browse files
committed
Bump version to 2024.1.1
1 parent 1b259f0 commit e47c406

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

pudb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import sys
2929

3030

31-
NUM_VERSION = (2024, 1)
31+
NUM_VERSION = (2024, 1, 1)
3232
VERSION = ".".join(str(nv) for nv in NUM_VERSION)
3333
__version__ = VERSION
3434

pudb/debugger.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2575,7 +2575,7 @@ def event_loop(self, toplevel=None):
25752575
self.message("Package 'pygments' not found. "
25762576
"Syntax highlighting disabled.")
25772577

2578-
WELCOME_LEVEL = "e046" # noqa
2578+
WELCOME_LEVEL = "e047" # noqa
25792579
if CONFIG["seen_welcome"] < WELCOME_LEVEL:
25802580
CONFIG["seen_welcome"] = WELCOME_LEVEL
25812581
from pudb import VERSION
@@ -2592,6 +2592,12 @@ def event_loop(self, toplevel=None):
25922592
"(invoked by hitting '?' after this message) should get you "
25932593
"on your way.\n"
25942594

2595+
"\nChanges in version 2024.1.1:\n\n"
2596+
"- Fix some urwid.util deprecation warnings\n"
2597+
"- Redirect pudb warnings to console\n"
2598+
"- Catch IndexError on empty Variables state "
2599+
"(Michael van der Kamp)\n"
2600+
25952601
"\nChanges in version 2024.1:\n\n"
25962602
"- Control remote debugging via env vars (Max Arnold)\n"
25972603
"- Adapt to, depend on urwid 2.4\n"

0 commit comments

Comments
 (0)