File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 28
28
import sys
29
29
30
30
31
- NUM_VERSION = (2022 , 1 , 2 )
31
+ NUM_VERSION = (2022 , 1 , 3 )
32
32
VERSION = "." .join (str (nv ) for nv in NUM_VERSION )
33
33
__version__ = VERSION
34
34
Original file line number Diff line number Diff line change @@ -2450,7 +2450,7 @@ def event_loop(self, toplevel=None):
2450
2450
self .message ("Package 'pygments' not found. "
2451
2451
"Syntax highlighting disabled." )
2452
2452
2453
- WELCOME_LEVEL = "e043 " # noqa
2453
+ WELCOME_LEVEL = "e044 " # noqa
2454
2454
if CONFIG ["seen_welcome" ] < WELCOME_LEVEL :
2455
2455
CONFIG ["seen_welcome" ] = WELCOME_LEVEL
2456
2456
from pudb import VERSION
@@ -2467,6 +2467,12 @@ def event_loop(self, toplevel=None):
2467
2467
"(invoked by hitting '?' after this message) should get you "
2468
2468
"on your way.\n "
2469
2469
2470
+ "\n Changes in version 2022.1.3:\n \n "
2471
+ "- Fix finding executable lines for Python 3.11 (Lumir Balhar)\n "
2472
+ "- Fix the midnight theme (Aaron Meurer)\n "
2473
+ "- Add a --continue flag (Michael van der Kamp)\n "
2474
+ "- Various fixes\n "
2475
+
2470
2476
"\n Changes in version 2022.1.2:\n \n "
2471
2477
"- Various fixes\n "
2472
2478
You can’t perform that action at this time.
0 commit comments