Skip to content

Commit d94532e

Browse files
committed
Bump version to 2022.1.2
1 parent 884a368 commit d94532e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-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, 1)
31+
NUM_VERSION = (2022, 1, 2)
3232
VERSION = ".".join(str(nv) for nv in NUM_VERSION)
3333
__version__ = VERSION
3434

pudb/debugger.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -2442,7 +2442,7 @@ def event_loop(self, toplevel=None):
24422442
self.message("Package 'pygments' not found. "
24432443
"Syntax highlighting disabled.")
24442444

2445-
WELCOME_LEVEL = "e042" # noqa
2445+
WELCOME_LEVEL = "e043" # noqa
24462446
if CONFIG["seen_welcome"] < WELCOME_LEVEL:
24472447
CONFIG["seen_welcome"] = WELCOME_LEVEL
24482448
from pudb import VERSION
@@ -2459,6 +2459,9 @@ def event_loop(self, toplevel=None):
24592459
"(invoked by hitting '?' after this message) should get you "
24602460
"on your way.\n"
24612461

2462+
"\nChanges in version 2022.1.2:\n\n"
2463+
"- Various fixes\n"
2464+
24622465
"\nChanges in version 2022.1.1:\n\n"
24632466
"- Fix ptpython shell invocation with nonempty argv (gh-510)\n"
24642467
"- Make some key bindings configurable (Cibin Mathew)\n"

0 commit comments

Comments
 (0)