Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,17 @@ mvn versions:set -DnewVersion=<our breaking change no>.<symphony-api-version>.<o
# then PR spring-bot-master branch with the new version number
```

OR

```
#create your version tag and push that tag on spring-bot-master branch
mvn clean test
mvn versions:set -DnewVersion=<our breaking change no>.<minor version no>.<our-patch-version-no> -DartifactId=\* -DgroupId=\*
git tag v<our breaking change no>.<minor version no>.<our-patch-version-no>
git push origin v<our breaking change no>.<minor version no>.<our-patch-version-no>
mvn versions:set -DnewVersion=<our breaking change no>.<symphony-api-version>.<our-release-no+1>-SNAPSHOT -DartifactId=\* -DgroupId=
```

3. SECURITY.md

- Update this with new version numbers if needed.
Expand Down
Loading