Skip to content

Commit

Permalink
Released 1.29.3 via make release
Browse files Browse the repository at this point in the history
  • Loading branch information
nemacysts committed Mar 27, 2024
1 parent e111b6e commit 390b49a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions debian/changelog
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'
Expand Down
2 changes: 1 addition & 1 deletion tron/__init__.py
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__ = [
Expand Down

0 comments on commit 390b49a

Please sign in to comment.