Merge branch '1.13.0' into pureos/byzantium

This commit is contained in:
Dorota Czaplejewicz
2021-04-12 11:30:18 +00:00
51 changed files with 3804 additions and 444 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
squeekboard (1.13.0-1pureos1) byzantium; urgency=medium
[ Dorota Czaplejewicz ]
* debian: New upstream release
-- Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm> Mon, 12 Apr 2021 10:50:32 +0000
squeekboard (1.12.0-1pureos1) byzantium; urgency=medium
[ Dorota Czaplejewicz ]

View File

@ -5,6 +5,7 @@ Feed it the first changelog line, and then all available tags.
"""
import re, sys
tag = "v" + re.findall("\\((.*)\\)", input())[0]
version = re.findall("\\((.*)\\)", input())[0]
tag = 'v' + re.findall("([0-9]+\\.[0-9]+\\.[0-9]+).*", version)[0]
if tag not in map(str.strip, sys.stdin.readlines()):
raise Exception("Changelog's current version doesn't have a tag. Push the tag!")