1
0
mirror of https://github.com/ublue-os/bazzite.git synced 2025-02-13 12:40:31 +00:00

Merge remote-tracking branch 'origin/main' into unstable

This commit is contained in:
Kyle Gospodnetich 2024-10-26 08:14:23 -07:00
commit e33919542c

@ -326,9 +326,9 @@ def generate_changelog(
finish = ""
# Remove .0 from curr
curr = re.sub(r"\.\d{1,2}$", "", curr)
curr_pretty = re.sub(r"\.\d{1,2}$", "", curr)
# Remove target- from curr
curr_pretty = re.sub(rf"^[a-z]+-", "", curr)
curr_pretty = re.sub(rf"^[a-z]+-", "", curr_pretty)
pretty = target.capitalize() + " (F" + curr_pretty
if finish and target != "stable":
pretty += ", #" + finish[:7]