diff --git a/pudb/__init__.py b/pudb/__init__.py index 05a522ad..b543480b 100644 --- a/pudb/__init__.py +++ b/pudb/__init__.py @@ -29,7 +29,7 @@ from pudb.settings import load_config -NUM_VERSION = (2024, 1, 1) +NUM_VERSION = (2024, 1, 2) VERSION = ".".join(str(nv) for nv in NUM_VERSION) __version__ = VERSION diff --git a/pudb/debugger.py b/pudb/debugger.py index 03ba4ed1..824c186e 100644 --- a/pudb/debugger.py +++ b/pudb/debugger.py @@ -2594,7 +2594,7 @@ def event_loop(self, toplevel=None): self.message("Package 'pygments' not found. " "Syntax highlighting disabled.") - WELCOME_LEVEL = "e047" # noqa + WELCOME_LEVEL = "e048" # noqa if CONFIG["seen_welcome"] < WELCOME_LEVEL: CONFIG["seen_welcome"] = WELCOME_LEVEL from pudb import VERSION @@ -2611,6 +2611,9 @@ def event_loop(self, toplevel=None): "(invoked by hitting '?' after this message) should get you " "on your way.\n" + "\nChanges in version 2024.1.2:\n\n" + "- Fix separate-terminal debugging (Matt Rixman)\n" + "\nChanges in version 2024.1.1:\n\n" "- Fix some urwid.util deprecation warnings\n" "- Redirect pudb warnings to console\n"