-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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__ = [ | ||
|