Skip to content

Commit

Permalink
Bump version to 2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rom1v committed Jul 9, 2023
1 parent 848a3ca commit 67e1faf
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Expand Up @@ -9,8 +9,8 @@ android {
applicationId "com.genymobile.gnirehtet"
minSdkVersion 21
targetSdkVersion 29
versionCode 8
versionName "2.5"
versionCode 9
versionName "2.5.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
Expand Up @@ -32,7 +32,7 @@
public final class Main {
private static final String TAG = "Gnirehtet";
private static final String NL = System.lineSeparator();
private static final String REQUIRED_APK_VERSION_CODE = "8";
private static final String REQUIRED_APK_VERSION_CODE = "9";

private Main() {
// not instantiable
Expand Down
2 changes: 1 addition & 1 deletion relay-rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion relay-rust/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "gnirehtet"
version = "2.5.0"
version = "2.5.1"
authors = ["Romain Vimont <rom@rom1v.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion relay-rust/src/main.rs
Expand Up @@ -34,7 +34,7 @@ use std::thread;
use std::time::Duration;

const TAG: &str = "Main";
const REQUIRED_APK_VERSION_CODE: &str = "8";
const REQUIRED_APK_VERSION_CODE: &str = "9";

#[inline]
fn get_adb_path() -> String {
Expand Down

0 comments on commit 67e1faf

Please sign in to comment.