File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 11# Release process
22
3- 1 . Update version string in ` build.gradle ` (1x), ` README.md ` (4x ) to the new (non-SNAPSHOT) version.
3+ 1 . Update version string in ` build.gradle ` (1x), ` README.md ` (2x ) to the new (non-SNAPSHOT) version.
44
55```
66./scripts/version.sh OLD_VERSION NEW_VERSION
992 . Commit "Release x.y.z", tag this commit with the new version "x.y.z".
1010
1111```
12+ git add README.md build.gradle
1213git commit -m "Release NEW_VERSION"
1314git tag -a NEW_VERSION -m "Version NEW_VERSION"
15+ git push --tags
1416```
1517
16183 . [ Deploy to OSSRH with Gradle] ( http://central.sonatype.org/pages/gradle.html ) :
Original file line number Diff line number Diff line change 1- # /usr/bin/env sh
1+ #! /usr/bin/env sh
22set -eu
33
44if [ " $# " -ne 2 ]; then
You can’t perform that action at this time.
0 commit comments