Update to 0.41.0 upstream release

Upstream tag: 0.41.0
Upstream commit: 2dc72c0d

Commit authored by Packit automation (https://packit.dev/)
This commit is contained in:
Packit 2026-05-29 09:15:16 +00:00
commit 8588ac255f
6 changed files with 15 additions and 5 deletions

View file

@ -4,7 +4,7 @@ Main focus is on modifying existing spec files, any change should result
in a minimal diff.}
%global base_version 0.40.2
%global base_version 0.41.0
#global prerelease rc1
%global package_version %{base_version}%{?prerelease:~%{prerelease}}
@ -72,6 +72,15 @@ rm -rf specfile.egg-info
%changelog
* Fri May 29 2026 Packit <hello@packit.dev> - 0.41.0-1
- 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)
* Fri Apr 24 2026 Packit <hello@packit.dev> - 0.40.2-1
- Trailing whitespaces at the end of specfile sections are now ignored during parsing. (#531)
- Resolves: rhbz#2461109