Skip to content

Commit

Permalink
Bump version to 0.5.2
Browse files Browse the repository at this point in the history
Signed-off-by: kexuan.yang <[email protected]>
  • Loading branch information
yangkx1024 committed Jul 29, 2024
1 parent 7a1d99f commit 23ba7d9
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mmkv"
version = "0.5.1"
version = "0.5.2"
edition = "2021"
authors = ["Kexuan Yang <[email protected]>"]
description = "Rust version of MMKV"
Expand Down
50 changes: 25 additions & 25 deletions android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ dependencies {
implementation("androidx.compose.ui:ui-tooling-preview")
debugImplementation("androidx.compose.ui:ui-tooling")

implementation("androidx.appcompat:appcompat:1.6.1")
implementation("androidx.appcompat:appcompat:1.7.0")
defaultDebugImplementation(project(":library"))
encryptionDebugImplementation(project(":library-encrypt"))
defaultStagingImplementation(Deps.mmkv_snapshot)
Expand All @@ -101,28 +101,28 @@ dependencies {
encryptionReleaseImplementation(Deps.mmkv_encrypt)

testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
androidTestImplementation("androidx.test.ext:junit:1.2.1")
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")
}

tasks.register("launchEmulator", Exec::class) {
workingDir = project.rootDir
commandLine = listOf("./start_android_emulator.sh")
environment["EMULATOR_NAME"] = "nexus"
}

if (System.getenv("CI")?.toBoolean() != true) {
tasks.register("killEmulator", Exec::class) {
workingDir = project.rootDir
commandLine = listOf("./kill_android_emulator.sh")
}

afterEvaluate {
tasks.findByName("connectedDefaultDebugAndroidTest")?.apply {
dependsOn(tasks.findByName("launchEmulator"))
}
tasks.findByName("connectedAndroidTest")?.apply {
finalizedBy(tasks.findByName("killEmulator"))
}
}
}
//
//tasks.register("launchEmulator", Exec::class) {
// workingDir = project.rootDir
// commandLine = listOf("./start_android_emulator.sh")
// environment["EMULATOR_NAME"] = "nexus"
//}
//
//if (System.getenv("CI")?.toBoolean() != true) {
// tasks.register("killEmulator", Exec::class) {
// workingDir = project.rootDir
// commandLine = listOf("./kill_android_emulator.sh")
// }
//
// afterEvaluate {
// tasks.findByName("connectedDefaultDebugAndroidTest")?.apply {
// dependsOn(tasks.findByName("launchEmulator"))
// }
// tasks.findByName("connectedAndroidTest")?.apply {
// finalizedBy(tasks.findByName("killEmulator"))
// }
// }
//}
4 changes: 2 additions & 2 deletions android/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.3.2" apply false
id("com.android.application") version "8.5.1" apply false
id("org.jetbrains.kotlin.android") version "1.9.22" apply false
id("com.android.library") version "8.3.2" apply false
id("com.android.library") version "8.5.1" apply false
}
2 changes: 1 addition & 1 deletion android/buildSrc/src/main/java/Version.kt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const val version = "0.5.1"
const val version = "0.5.2"
2 changes: 1 addition & 1 deletion android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Aug 08 15:15:43 SGT 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Binary file modified android/library-encrypt/src/main/jniLibs/arm64-v8a/libmmkv.so
Binary file not shown.
Binary file modified android/library-encrypt/src/main/jniLibs/armeabi-v7a/libmmkv.so
Binary file not shown.
Binary file modified android/library-encrypt/src/main/jniLibs/x86_64/libmmkv.so
Binary file not shown.
Binary file modified android/library/src/main/jniLibs/arm64-v8a/libmmkv.so
Binary file not shown.
Binary file modified android/library/src/main/jniLibs/armeabi-v7a/libmmkv.so
Binary file not shown.
Binary file modified android/library/src/main/jniLibs/x86_64/libmmkv.so
Binary file not shown.
Binary file modified ios/MMKV/RustMMKV.xcframework.zip
Binary file not shown.

0 comments on commit 23ba7d9

Please sign in to comment.