From 390b49a77740e7d473a4e4b9cd55e358dff20e1c Mon Sep 17 00:00:00 2001 From: Luis Perez Date: Wed, 27 Mar 2024 15:00:11 -0700 Subject: [PATCH] Released 1.29.3 via make release --- debian/changelog | 12 ++++++++++++ tron/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 1941595ff..655f52999 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Wed, 27 Mar 2024 15:00:00 -0700 + tron (1.29.2) jammy; urgency=medium * 1.29.2 tagged with 'make release' diff --git a/tron/__init__.py b/tron/__init__.py index 95b9c7ef1..4ffe6153d 100644 --- a/tron/__init__.py +++ b/tron/__init__.py @@ -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 " __credits__ = [