From 96c9c60219a5eda3656a6b9d10a8eec6e7eebc02 Mon Sep 17 00:00:00 2001 From: Luis Perez Date: Tue, 20 Feb 2024 11:55:53 -0800 Subject: [PATCH] Released 1.28.5 via make release --- debian/changelog | 13 +++++++++++++ tron/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index c4d6d105f..f0e1fc2dd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +tron (1.28.5) jammy; urgency=medium + + * 1.28.5 tagged with 'make release' + Commit: Stop keeping old copies of eventbus files (#941) We've + never restored from these 'backups', and as long as we ensure that + the current file points to a fully written file, it's fine to only + keep at most 2 files around: the actual current file and a temporary + 'new' file. To ensure that we're not pointing at a half-written + file, we continue using the age-old pattern for atomic file updates: + write to another file and swap a symlink once the write is complete + + -- Luis Perez Tue, 20 Feb 2024 11:55:45 -0800 + tron (1.28.4) jammy; urgency=medium * 1.28.4 tagged with 'make release' diff --git a/tron/__init__.py b/tron/__init__.py index 30d4d9c89..a3ed60b7b 100644 --- a/tron/__init__.py +++ b/tron/__init__.py @@ -1,4 +1,4 @@ -__version_info__ = (1, 28, 4) +__version_info__ = (1, 28, 5) __version__ = ".".join("%s" % v for v in __version_info__) __author__ = "Yelp " __credits__ = [