Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.40.0

- `Specfile()` has a new `sanitize` option that enables best effort sanitization of potentially dangerous constructs such as shell expansions and unsafe Lua macros before they are passed to RPM for parsing. (#519)
- Fixed incorrect parsing of nested macros. (#522)

# 0.39.1
Comment thread
majamassarini marked this conversation as resolved.

- Fixed whitespace padding of day of month in changelog entries. (#511)
Expand Down
5 changes: 4 additions & 1 deletion centos-integration-sig/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.39.1
%global base_version 0.40.0
#global prerelease rc1

%global package_version %{base_version}%{?prerelease:~%{prerelease}}
Expand Down Expand Up @@ -81,6 +81,9 @@ sed -i 's/setuptools_scm\[toml\]>=7/setuptools_scm[toml]/' pyproject.toml


%changelog
* Mon Mar 09 2026 Packit Team <hello@packit.dev> - 0.40.0-1
- New upstream release 0.40.0

* Sat Feb 14 2026 Packit Team <hello@packit.dev> - 0.39.1-1
- New upstream release 0.39.1

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.39.1
%global base_version 0.40.0
#global prerelease rc1

%global package_version %{base_version}%{?prerelease:~%{prerelease}}
Expand Down Expand Up @@ -72,6 +72,9 @@ rm -rf specfile.egg-info


%changelog
* Mon Mar 09 2026 Packit Team <hello@packit.dev> - 0.40.0-1
- New upstream release 0.40.0

* Sat Feb 14 2026 Packit Team <hello@packit.dev> - 0.39.1-1
- New upstream release 0.39.1

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.39.1
%global base_version 0.40.0
#global prerelease rc1

%global package_version %{base_version}%{?prerelease:~%{prerelease}}
Expand Down Expand Up @@ -81,6 +81,9 @@ sed -i 's/setuptools_scm\[toml\]>=7/setuptools_scm[toml]/' pyproject.toml


%changelog
* Mon Mar 09 2026 Packit Team <hello@packit.dev> - 0.40.0-1
- New upstream release 0.40.0

* Sat Feb 14 2026 Packit Team <hello@packit.dev> - 0.39.1-1
- New upstream release 0.39.1

Expand Down
Loading