Skip to content

Commit

Permalink
Release 0.33.0 (#442)
Browse files Browse the repository at this point in the history
Release 0.33.0

Update the changelog and the specfile for release 0.33.0.

Reviewed-by: Nikola Forró
  • Loading branch information
softwarefactory-project-zuul[bot] authored Dec 13, 2024
2 parents b5b95e9 + 62c62ec commit c0a98a8
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 0.33.0

- 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"]

# 0.32.6

- New minor release for testing in CBS Koji
Expand Down
5 changes: 4 additions & 1 deletion epel8/python-specfile.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
Expand Down Expand Up @@ -68,6 +68,9 @@ rm -rf specfile.egg-info


%changelog
* Fri Dec 13 2024 Packit Team <hello@packit.dev> - 0.33.0-1
- New upstream release 0.33.0

* Wed Nov 13 2024 Packit Team <hello@packit.dev> - 0.32.6-1
- New upstream release 0.32.6

Expand Down
5 changes: 4 additions & 1 deletion fedora/python-specfile.spec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,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}}
Expand Down Expand Up @@ -77,6 +77,9 @@ sed -i 's/setuptools_scm\[toml\]>=7/setuptools_scm[toml]/' pyproject.toml


%changelog
* Fri Dec 13 2024 Packit Team <hello@packit.dev> - 0.33.0-1
- New upstream release 0.33.0

* Wed Nov 13 2024 Packit Team <hello@packit.dev> - 0.32.6-1
- New upstream release 0.32.6

Expand Down

0 comments on commit c0a98a8

Please sign in to comment.