Update to 0.33.0 upstream release

- Resolves: rhbz#2332288

Upstream tag: 0.33.0
Upstream commit: c0a98a85

Commit authored by Packit automation (https://packit.dev/)
This commit is contained in:
Packit 2024-12-16 08:23:04 +00:00
commit 9f3db48171
7 changed files with 66 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.32.6
%global base_version 0.33.0
#global prerelease rc1
%global package_version %{base_version}%{?prerelease:~%{prerelease}}
@ -68,6 +68,18 @@ rm -rf specfile.egg-info
%changelog
* Mon Dec 16 2024 Packit <hello@packit.dev> - 0.33.0-1
- There is a new convenience method `Sections.get_or_create()` that allows you to manipulate a section
without checking if it exists first. If a section doesn't exist, it will be appended to the end. (#441)
For example, this will work properly even on spec files without `%%changelog`:
```
with spec.sections() as sections:
changelog = sections.get_or_create("changelog")
changelog[:] = ["%%autochangelog"]
```
- Resolves: rhbz#2332288
* Thu Nov 14 2024 Packit <hello@packit.dev> - 0.32.6-1
- New minor release for testing in CBS Koji
- Resolves: rhbz#2318011