Skip to content

Commit aa817a6

Browse files
committed
Bump version to 2022.1.3
1 parent e259c6f commit aa817a6

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

pudb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import sys
2929

3030

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

pudb/debugger.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -2450,7 +2450,7 @@ def event_loop(self, toplevel=None):
24502450
self.message("Package 'pygments' not found. "
24512451
"Syntax highlighting disabled.")
24522452

2453-
WELCOME_LEVEL = "e043" # noqa
2453+
WELCOME_LEVEL = "e044" # noqa
24542454
if CONFIG["seen_welcome"] < WELCOME_LEVEL:
24552455
CONFIG["seen_welcome"] = WELCOME_LEVEL
24562456
from pudb import VERSION
@@ -2467,6 +2467,12 @@ def event_loop(self, toplevel=None):
24672467
"(invoked by hitting '?' after this message) should get you "
24682468
"on your way.\n"
24692469

2470+
"\nChanges 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+
24702476
"\nChanges in version 2022.1.2:\n\n"
24712477
"- Various fixes\n"
24722478

0 commit comments

Comments
 (0)