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 1
1
# Release process
2
2
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.
4
4
5
5
```
6
6
./scripts/version.sh OLD_VERSION NEW_VERSION
9
9
2 . Commit "Release x.y.z", tag this commit with the new version "x.y.z".
10
10
11
11
```
12
+ git add README.md build.gradle
12
13
git commit -m "Release NEW_VERSION"
13
14
git tag -a NEW_VERSION -m "Version NEW_VERSION"
15
+ git push --tags
14
16
```
15
17
16
18
3 . [ 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
2
2
set -eu
3
3
4
4
if [ " $# " -ne 2 ]; then
You can’t perform that action at this time.
0 commit comments