Skip to content

Commit b74fe30

Browse files
committed
Bump version to 2025.1
1 parent 2f809d4 commit b74fe30

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

pudb/debugger.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2567,7 +2567,7 @@ def event_loop(self, toplevel=None):
25672567
self.message("Package 'pygments' not found. "
25682568
"Syntax highlighting disabled.")
25692569

2570-
WELCOME_LEVEL = "e049" # noqa
2570+
WELCOME_LEVEL = "e050" # noqa
25712571
if CONFIG["seen_welcome"] < WELCOME_LEVEL:
25722572
CONFIG["seen_welcome"] = WELCOME_LEVEL
25732573
from pudb import VERSION
@@ -2584,6 +2584,11 @@ def event_loop(self, toplevel=None):
25842584
"(invoked by hitting '?' after this message) should get you "
25852585
"on your way.\n"
25862586

2587+
"\nChanges in version 2025.1:\n\n"
2588+
"- Fix compatibility with Urwid 3\n"
2589+
"- Allow leaving output screen with single key press "
2590+
"(Gerhard Sittig)\n"
2591+
25872592
"\nChanges in version 2024.1.3:\n\n"
25882593
"- Switch to hatchling build system\n"
25892594
"- Fix compatibility with Python 3.13\n"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "pudb"
7-
version = "2024.1.3"
7+
version = "2025.1"
88
description = "A full-screen, console-based Python debugger"
99
readme = "README.rst"
1010
license = "MIT"

0 commit comments

Comments
 (0)