- Fixed an issue where the value of a tag could have been incorrectly expanded if the spec file contained a macro definition shadowing the tag name, e.g.:
%global release 12
%global release_string %{release}%{?dist}
Release: %{release_string}
In this case, with dist being .fc44, Specfile.expanded_release returned 12.fc44.fc44 instead of 12.fc44. (#539)