Skip to content

Commit

Permalink
Bump version to 2022.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Nov 3, 2022
1 parent e259c6f commit aa817a6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pudb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import sys


NUM_VERSION = (2022, 1, 2)
NUM_VERSION = (2022, 1, 3)
VERSION = ".".join(str(nv) for nv in NUM_VERSION)
__version__ = VERSION

Expand Down
8 changes: 7 additions & 1 deletion pudb/debugger.py
Original file line number Diff line number Diff line change
Expand Up @@ -2450,7 +2450,7 @@ def event_loop(self, toplevel=None):
self.message("Package 'pygments' not found. "
"Syntax highlighting disabled.")

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

"\nChanges in version 2022.1.3:\n\n"
"- Fix finding executable lines for Python 3.11 (Lumir Balhar)\n"
"- Fix the midnight theme (Aaron Meurer)\n"
"- Add a --continue flag (Michael van der Kamp)\n"
"- Various fixes\n"

"\nChanges in version 2022.1.2:\n\n"
"- Various fixes\n"

Expand Down

0 comments on commit aa817a6

Please sign in to comment.