From 172aa52e358cae8d949964ac930047bf2377d07a Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Mon, 22 Jul 2024 14:24:20 -0500 Subject: [PATCH] Bump version to 2024.1.2 --- pudb/__init__.py | 2 +- pudb/debugger.py | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/pudb/__init__.py b/pudb/__init__.py index 05a522a..b543480 100644 --- a/pudb/__init__.py +++ b/pudb/__init__.py @@ -29,7 +29,7 @@ import sys 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 03ba4ed..824c186 100644 --- a/pudb/debugger.py +++ b/pudb/debugger.py @@ -2594,7 +2594,7 @@ Error with jump. Note that jumping only works on the topmost stack frame. 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 @@ Error with jump. Note that jumping only works on the topmost stack frame. "(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"