We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49b6b1d commit 1555864Copy full SHA for 1555864
RELEASE.md
@@ -1,6 +1,6 @@
1
# Release process
2
3
-1. Update version string in `build.gradle` (1x), `README.md` (4x) to the new (non-SNAPSHOT) version.
+1. Update version string in `build.gradle` (1x), `README.md` (2x) to the new (non-SNAPSHOT) version.
4
5
```
6
./scripts/version.sh OLD_VERSION NEW_VERSION
@@ -9,8 +9,10 @@
9
2. Commit "Release x.y.z", tag this commit with the new version "x.y.z".
10
11
12
+git add README.md build.gradle
13
git commit -m "Release NEW_VERSION"
14
git tag -a NEW_VERSION -m "Version NEW_VERSION"
15
+git push --tags
16
17
18
3. [Deploy to OSSRH with Gradle](http://central.sonatype.org/pages/gradle.html):
scripts/version.sh
@@ -1,4 +1,4 @@
-#/usr/bin/env sh
+#!/usr/bin/env sh
set -eu
if [ "$#" -ne 2 ]; then
0 commit comments