Skip to content

Commit

Permalink
chore(app): prepare release 1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ashutoshgngwr committed Sep 23, 2021
1 parent 00953ae commit b50c514
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Expand Up @@ -17,8 +17,8 @@ android {
applicationId 'com.github.ashutoshgngwr.noice'
minSdkVersion 21
targetSdkVersion 30
versionCode 51
versionName '1.3.2'
versionCode 52
versionName '1.3.3'
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}

Expand Down
7 changes: 7 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/52.txt
@@ -0,0 +1,7 @@
- Prevent v2 announcement from showing up more than once
- Update translations

We're making some radical changes to Noice in the coming releases. Please read the full announcement at https://ashutoshgngwr.github.io/noice/news/v2-announcement

We're continuously working to make Noice better. Please turn on updates to never miss a thing!
See detailed changelog at https://ashutoshgngwr.github.io/noice/CHANGELOG
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 14 additions & 4 deletions scripts/run-ui-tests.sh
Expand Up @@ -43,13 +43,23 @@ adb logcat -c # truncate old logs
adb logcat -v raw -v color -s "TestRunner:*" > "$TEST_RUNNER_ERROR_LOGS" &
LOGCAT_PID=$!

function cleanup() {
echo "stop collecting test runner logs..."
kill "$LOGCAT_PID"

echo "removing test runner log file..."
rm -f "$TEST_RUNNER_ERROR_LOGS"

echo "stopping gradle daemon..."
./gradlew --stop
}

trap "cleanup" EXIT

echo "starting $GRADLE_TASK gradle task..."
./gradlew "$GRADLE_TASK" --no-daemon --stacktrace
./gradlew "$GRADLE_TASK" --stacktrace
GRADLE_EXITCODE=$?

echo "stop collecting test runner logs..."
kill "$LOGCAT_PID"

if [ $GRADLE_EXITCODE -ne 0 ]; then
echo ""
echo "gradle task '$GRADLE_TASK' has failing tests!" >&2
Expand Down

0 comments on commit b50c514

Please sign in to comment.