Skip to content

Commit

Permalink
Fix introduction of pre-release handling
Browse files Browse the repository at this point in the history
We need to release specfile to be able to handle
the pre-release syntax.
  • Loading branch information
majamassarini committed Jan 19, 2024
1 parent 13c3394 commit 32984ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions epel8/python-specfile.spec
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ Main focus is on modifying existing spec files, any change should result
in a minimal diff.}


%global base_version 0.26.0
%global base_version 0.27.0
#global prerelease rc1

%global package_version 0.27.0
%global package_version %{base_version}%{?prerelease:~%{prerelease}}
%global pypi_version %{base_version}%{?prerelease}


Expand Down
4 changes: 2 additions & 2 deletions fedora/python-specfile.spec
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ Main focus is on modifying existing spec files, any change should result
in a minimal diff.}


%global base_version 0.26.0
%global base_version 0.27.0
#global prerelease rc1

%global package_version 0.27.0
%global package_version %{base_version}%{?prerelease:~%{prerelease}}
%global pypi_version %{base_version}%{?prerelease}


Expand Down

0 comments on commit 32984ae

Please sign in to comment.