Skip to content

Commit

Permalink
Released 1.28.5 via make release
Browse files Browse the repository at this point in the history
  • Loading branch information
nemacysts committed Feb 20, 2024
1 parent e4d4afd commit 96c9c60
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> Tue, 20 Feb 2024 11:55:45 -0800

tron (1.28.4) jammy; urgency=medium

* 1.28.4 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, 28, 4)
__version_info__ = (1, 28, 5)
__version__ = ".".join("%s" % v for v in __version_info__)
__author__ = "Yelp <[email protected]>"
__credits__ = [
Expand Down

0 comments on commit 96c9c60

Please sign in to comment.