Skip to content

Commit

Permalink
increment minor instead of patch when creating first dev version afte…
Browse files Browse the repository at this point in the history
…r release
  • Loading branch information
irenaby committed Sep 10, 2024
1 parent 19307cd commit 577e106
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ jobs:
if v.is_devrelease:
print(f'{v.major}.{v.minor}.{v.micro}.dev{v.dev + 1}')
else:
print(f'{v.major}.{v.minor}.{v.micro + 1}.dev0')
print(f'{v.major}.{v.minor+1}.{v.micro}.dev0')
")
fi
echo "new_ver=${new_version}" >> $GITHUB_ENV
Expand Down

0 comments on commit 577e106

Please sign in to comment.