From e59b611ecc164d1ba0631435689ffc177554864d Mon Sep 17 00:00:00 2001 From: Eman Elsabban Date: Tue, 4 Jun 2024 11:24:43 -0700 Subject: [PATCH] Released 2.1.1 via make release --- Makefile | 2 +- debian/changelog | 10 ++++++++++ tron/__init__.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 71b4d59f4..85015a275 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Edit this release and run "make release" -RELEASE=2.1.0 +RELEASE=2.1.1 SHELL=/bin/bash diff --git a/debian/changelog b/debian/changelog index f2f7f447b..abb80f765 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +tron (2.1.1) jammy; urgency=medium + + * 2.1.1 tagged with 'make release' + Commit: Handling exceptions thrown from threads span by + ThreadPoolExecutor - TRON-2202 (#969) * Handling exceptions thrown + from threads span by ThreadPoolExecutor * Addressing reviews * + Addressing more reviews * Removed Exit code + + -- Eman Elsabban Tue, 04 Jun 2024 11:24:00 -0700 + tron (2.1.0) jammy; urgency=medium * 2.1.0 tagged with 'make release' diff --git a/tron/__init__.py b/tron/__init__.py index 7f3d7beb4..64ff6630b 100644 --- a/tron/__init__.py +++ b/tron/__init__.py @@ -17,4 +17,4 @@ # setup phase, the dependencies may not exist on disk yet. # # Don't bump version manually. See `make release` docs in ./Makefile -__version__ = "2.1.0" +__version__ = "2.1.1"