Skip to content

Commit

Permalink
Bump version to 2024.1
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Jan 16, 2024
1 parent 270c7c9 commit 920414f
Show file tree
Hide file tree
Showing 2 changed files with 9 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 = (2023, 1)
NUM_VERSION = (2024, 1)
VERSION = ".".join(str(nv) for nv in NUM_VERSION)
__version__ = VERSION

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

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

"\nChanges in version 2024.1:\n\n"
"- Control remote debugging via env vars (Max Arnold)\n"
"- Adapt to, depend on urwid 2.4\n"
"- Make compatible with Python 3.13 (Will Shanks)\n"
"- Use co_lines mechanism for line finding executable lines"
"when available\n"

"\nChanges in version 2023.1:\n\n"
"- Add nord-256 theme (Jorge Gomez, Michael van der Kamp)\n"
"- Reorganize themes, add light gray theme "
Expand Down

0 comments on commit 920414f

Please sign in to comment.