File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 2828import sys
2929
3030
31- NUM_VERSION = (2024 , 1 )
31+ NUM_VERSION = (2024 , 1 , 1 )
3232VERSION = "." .join (str (nv ) for nv in NUM_VERSION )
3333__version__ = VERSION
3434
Original file line number Diff line number Diff 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+ "\n Changes 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 "\n Changes 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 "
You can’t perform that action at this time.
0 commit comments