Skip to content

Commit 1555864

Browse files
committed
Update release instructions
1 parent 49b6b1d commit 1555864

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Diff for: RELEASE.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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
@@ -9,8 +9,10 @@
99
2. Commit "Release x.y.z", tag this commit with the new version "x.y.z".
1010

1111
```
12+
git add README.md build.gradle
1213
git commit -m "Release NEW_VERSION"
1314
git tag -a NEW_VERSION -m "Version NEW_VERSION"
15+
git push --tags
1416
```
1517

1618
3. [Deploy to OSSRH with Gradle](http://central.sonatype.org/pages/gradle.html):

Diff for: scripts/version.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#/usr/bin/env sh
1+
#!/usr/bin/env sh
22
set -eu
33

44
if [ "$#" -ne 2 ]; then

0 commit comments

Comments
 (0)