with one click
alm-processing
// Use this to perform operations on the langgraph4j project. 1) create a new project release 2) move to next dev release
// Use this to perform operations on the langgraph4j project. 1) create a new project release 2) move to next dev release
| name | alm-processing |
| description | Use this to perform operations on the langgraph4j project. 1) create a new project release 2) move to next dev release |
In this project we follow the "git flow" branching strategy.
To create a new release we need to start from develop branch and accomplish the workflow outlined below:
Starting from develop branch and runs the command git flow release start "<version>" that will create a branch from develop named release\<version>.
After created successfully the release branch we must update the java project release runs the command mvn versions:set -DnewVersion=<version>.
After the command successfully completed we must to confirm changes in pom.xml files runs command mvn version:commit
After update java project release we must commit to git runs commands
git add . ; git commit -m'build: bump to next version <version>'
At this point pause execution and ask to the user when ready to close the release, When he confirms proceed to next steps
To close the release runs git flow release finish "<version>" -m"new release <version>" that will merge the branch release/<version> to both main and develop ones
To update change log follow the steps below :
exec command git flow hotfix start changelog
exec command git-changelog-command-line -of CHANGELOG.md
exec command git commit -m'docs: update changelog' -a
exec command git flow hotfix finish changelog -n -m"changelog hotfix merge"