-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
tron (1.29.3) jammy; urgency=medium | ||
|
||
* 1.29.3 tagged with 'make release' | ||
Commit: Add a top-level exception handler (#947) As the comment | ||
says: let's see if adding a top-level handler (that then re-raises) | ||
and catching BaseException will give us more info as to what's | ||
sometimes causing Tron to exit. I've also added the usual base | ||
exception (Exception) just to be extra-safe (h/t to krall for the | ||
idea) | ||
|
||
-- Luis Perez <[email protected]> Wed, 27 Mar 2024 15:00:00 -0700 | ||
|
||
tron (1.29.2) jammy; urgency=medium | ||
|
||
* 1.29.2 tagged with 'make release' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version_info__ = (1, 29, 2) | ||
__version_info__ = (1, 29, 3) | ||
__version__ = ".".join("%s" % v for v in __version_info__) | ||
__author__ = "Yelp <[email protected]>" | ||
__credits__ = [ | ||
|