You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Empty sections should be removed and every item should have a link to a related issue.
Use git log --oneline x.y.z..x.y.z+1 for getting a list of the changes.
it's impossible to specify a pattern as regexp (so we can't update 0.4.7.1 => 0.4.8.0 as it has additional section that should be resetted to zero during update) (can be workarounded with pre_commit_hook and sed)
there is no way to provide a replacement text (so we can't update 0.4.8-SNAPSHOT => 0.4.8 or 0.x (upcoming release) => 0.4.8)
The process of creating a new release should be documented.
Here is the list of the steps to be executed (within
master
branch):NEWS.txt
pom.xml
(remove-SNAPSHOT
:./mvnw versions:set -DgenerateBackupPoms=false -DnewVersion=x.y.z
)ResourceUrl.RESOURCES_VERSION
src/main/frontend/package.json
andsrc/main/frontend/package-lock.json
infra/docker/docker-compose.yml
infra/kubernetes/deployment.yml
git commit -a -m 'chore: release of x.y.z version'
git tag -a x.y.z -m x.y.z && git push --follow-tags
)prod
branch and deploy to production (git checkout prod; git merge master; git push; git checkout -
)Empty sections should be removed and every item should have a link to a related issue.
Use
git log --oneline x.y.z..x.y.z+1
for getting a list of the changes.x.y.{$z+1}-SNAPSHOT
:./mvnw versions:set -DgenerateBackupPoms=false -DnextSnapshot=true
git commit -a
with a messagechore: update version for development\n[skip ci]
git push
The text was updated successfully, but these errors were encountered: