gen-changelog.py: Fix a long standing typo

While looking at something else, I stumbled upon a long standing
copy-paste typo where we refer to original GNET (from gstreamer) in
lieu of libabigail.  Fixed thus.

	* gen-changelog.py (get_rel_tags): It's libabigail, not GNET.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
Dodji Seketeli 2023-10-20 18:19:48 +02:00
parent 3459495617
commit 9a40b69c36

View File

@ -121,7 +121,7 @@ def output_commits():
def get_rel_tags():
# Populate the release_refs dict with the tags for previous releases
reltagre = re.compile("^([a-z0-9]{40}) refs/tags/GNET-([0-9]+)[-_.]([0-9]+)[-_.]([0-9]+)")
reltagre = re.compile("^([a-z0-9]{40}) refs/tags/libabigail-([0-9]+)[-_.]([0-9]+)[-_.]([0-9]+)")
cmd = ['git', 'show-ref', '--tags', '--dereference']
p = subprocess.Popen(args=cmd, shell=False,