Skip to content

Commit

Permalink
Bump version to 2024.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Jul 22, 2024
1 parent 8a575fb commit 172aa52
Show file tree
Hide file tree
Showing 2 changed files with 5 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 @@ -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

Expand Down
5 changes: 4 additions & 1 deletion pudb/debugger.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down

0 comments on commit 172aa52

Please sign in to comment.