v1.18.6
What's Changed
Changed
🎉 Achieving a workflow with one-liner gradle step: ./gradew build release publish
is now possible!
Setting releaseOnlyOnReleaseBranches option
scmVersion {
releaseOnlyOnReleaseBranches = true
}
Will make release
task no-operation, if run on feature branches (not main
/master
).
You can further customize release branch name list, using releaseBranchNames
property:
scmVersion {
releaseOnlyOnReleaseBranches = true
releaseBranchNames = ['main', 'master']
}
Based on users feedback it may be set to default in future releases :)
Dependency updates
- Bump mkdocs-material from 9.5.31 to 9.5.32 by @dependabot in #794
- Bump pl.allegro.tech.build.axion-release from 1.18.4 to 1.18.5 by @dependabot in #795
- Bump mkdocs-material from 9.5.32 to 9.5.33 by @dependabot in #798
Full Changelog: v1.18.5...v1.18.6