Skip to content

Commit

Permalink
bump version to 3.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarning committed Sep 19, 2021
1 parent dc1b855 commit a569ac7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ android {
defaultConfig {
minSdkVersion 21
targetSdkVersion 30
versionCode 333
versionName "3.3.3"
versionCode 334
versionName "3.3.4"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
resConfigs "en"
}
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/app/trigger/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,8 @@ private static void upgradeDB() {
db_version = new_version;
}

if (Arrays.asList("3.3.0", "3.3.1", "3.3.2").contains(db_version)) {
String new_version = "3.3.3";
if (Arrays.asList("3.3.0", "3.3.1", "3.3.2", "3.3.3").contains(db_version)) {
String new_version = "3.3.4";
Log.i(TAG, "Update database format from " + db_version + " to " + new_version);
// nothing to change
setups = new ArrayList();
Expand Down
2 changes: 2 additions & 0 deletions metadata/android/en-US/changelogs/334.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* fix some HTTPS hostname verification issues
* make HTTP method explicit

0 comments on commit a569ac7

Please sign in to comment.