From 920414fb68aa09f4af26a967481c3a4123c77709 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Tue, 16 Jan 2024 16:07:01 -0600 Subject: [PATCH] Bump version to 2024.1 --- pudb/__init__.py | 2 +- pudb/debugger.py | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/pudb/__init__.py b/pudb/__init__.py index 71988391..299c121c 100644 --- a/pudb/__init__.py +++ b/pudb/__init__.py @@ -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 diff --git a/pudb/debugger.py b/pudb/debugger.py index 74bbcdd8..7ca66bd3 100644 --- a/pudb/debugger.py +++ b/pudb/debugger.py @@ -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 @@ -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 "