Skip to content

Commit

Permalink
Bump version to 2024.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Jul 11, 2024
1 parent 1b259f0 commit e47c406
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 = (2024, 1)
NUM_VERSION = (2024, 1, 1)
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 @@ -2575,7 +2575,7 @@ def event_loop(self, toplevel=None):
self.message("Package 'pygments' not found. "
"Syntax highlighting disabled.")

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

"\nChanges in version 2024.1.1:\n\n"
"- Fix some urwid.util deprecation warnings\n"
"- Redirect pudb warnings to console\n"
"- Catch IndexError on empty Variables state "
"(Michael van der Kamp)\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"
Expand Down

0 comments on commit e47c406

Please sign in to comment.