diff --git a/README.md b/README.md
index d29704522..73afa695b 100644
--- a/README.md
+++ b/README.md
@@ -32,7 +32,7 @@ Linux | | or download the APK file: [64-bit](https://github.com/laurent22/joplin-android/releases/download/android-v1.0.315/joplin-v1.0.315.apk) [32-bit](https://github.com/laurent22/joplin-android/releases/download/android-v1.0.315/joplin-v1.0.315-32bit.apk)
+Android | | or download the APK file: [64-bit](https://github.com/laurent22/joplin-android/releases/download/android-v1.0.316/joplin-v1.0.316.apk) [32-bit](https://github.com/laurent22/joplin-android/releases/download/android-v1.0.316/joplin-v1.0.316-32bit.apk)
iOS | | -
## Terminal application
diff --git a/ReactNativeClient/android/app/build.gradle b/ReactNativeClient/android/app/build.gradle
index 5a3a9861f..7531416cf 100644
--- a/ReactNativeClient/android/app/build.gradle
+++ b/ReactNativeClient/android/app/build.gradle
@@ -94,8 +94,8 @@ android {
applicationId "net.cozic.joplin"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 2097551
- versionName "1.0.315"
+ versionCode 2097552
+ versionName "1.0.316"
ndk {
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
diff --git a/Tools/git-changelog.js b/Tools/git-changelog.js
index ca79a8302..bfbcc3e04 100644
--- a/Tools/git-changelog.js
+++ b/Tools/git-changelog.js
@@ -223,6 +223,7 @@ async function findFirstRelevantTag(baseTag) {
while (true) {
try {
const logs = await gitLog(tag);
+ console.info(logs);process.exit();
if (logs.length) return tag;
} catch (error) {
if (error.message.indexOf('unknown revision') >= 0) {