Skip to content

Commit

Permalink
Bump version to 2024.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Oct 18, 2024
1 parent 0f91d12 commit f0b2aa5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion pudb/debugger.py
Original file line number Diff line number Diff line change
Expand Up @@ -2578,7 +2578,7 @@ def event_loop(self, toplevel=None):
self.message("Package 'pygments' not found. "
"Syntax highlighting disabled.")

WELCOME_LEVEL = "e048" # noqa
WELCOME_LEVEL = "e049" # noqa
if CONFIG["seen_welcome"] < WELCOME_LEVEL:
CONFIG["seen_welcome"] = WELCOME_LEVEL
from pudb import VERSION
Expand All @@ -2595,6 +2595,11 @@ def event_loop(self, toplevel=None):
"(invoked by hitting '?' after this message) should get you "
"on your way.\n"

"\nChanges in version 2024.1.3:\n\n"
"- Switch to hatchling build system\n"
"- Fix compatibility with Python 3.13\n"
"- Fix startup without write permissions (Fergal Armstrong)\n"

"\nChanges in version 2024.1.2:\n\n"
"- Fix separate-terminal debugging (Matt Rixman)\n"

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "pudb"
version = "2024.1.2"
version = "2024.1.3"
description = "A full-screen, console-based Python debugger"
readme = "README.rst"
license = "MIT"
Expand Down

0 comments on commit f0b2aa5

Please sign in to comment.