diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c8cfff..c41d735 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,31 @@ +## [1.2.1-dev.4](https://github.com/MorpheApp/morphe-library/compare/v1.2.1-dev.3...v1.2.1-dev.4) (2026-02-26) + + +### Bug Fixes + +* Use latest Morphe patcher dev ([2f7d437](https://github.com/MorpheApp/morphe-library/commit/2f7d4373ad30a1aacc17555959a6832c8f834669)) + +## [1.2.1-dev.3](https://github.com/MorpheApp/morphe-library/compare/v1.2.1-dev.2...v1.2.1-dev.3) (2026-02-25) + + +### Bug Fixes + +* Use latest Morphe patcher dev ([23e78b5](https://github.com/MorpheApp/morphe-library/commit/23e78b5a3a0e58cfcc35d75d2832177f718a46c9)) + +## [1.2.1-dev.2](https://github.com/MorpheApp/morphe-library/compare/v1.2.1-dev.1...v1.2.1-dev.2) (2026-02-24) + + +### Bug Fixes + +* Use latest Morphe patcher dev ([a1465c6](https://github.com/MorpheApp/morphe-library/commit/a1465c6894b4820a77c33ef0ca51e8e49462089e)) + +## [1.2.1-dev.1](https://github.com/MorpheApp/morphe-library/compare/v1.2.0...v1.2.1-dev.1) (2026-02-21) + + +### Bug Fixes + +* Use Morphe patcher 1.2.0 ([dfbe1f0](https://github.com/MorpheApp/morphe-library/commit/dfbe1f00da55ae4f22ffad011a030e3d848a92b2)) + # [1.2.0](https://github.com/MorpheApp/morphe-library/compare/v1.1.0...v1.2.0) (2026-02-04) diff --git a/build.gradle.kts b/build.gradle.kts index 92d057e..ce03340 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -59,12 +59,12 @@ kotlin { implementation(libs.jadb) implementation(libs.kotlin.reflect) implementation(libs.kotlinx.serialization.json) - implementation(libs.morphe.patcher) + api(libs.morphe.patcher) } commonTest.dependencies { implementation(libs.kotlin.test.junit) - implementation(libs.morphe.patcher) + api(libs.morphe.patcher) } } } diff --git a/gradle.properties b/gradle.properties index e36cdf3..97253de 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version = 1.2.0 +version = 1.2.1-dev.4 #Gradle org.gradle.jvmargs = -Xmx2048M -Dfile.encoding=UTF-8 -Dkotlin.daemon.jvm.options="-Xmx2048M" org.gradle.caching = true diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 90f4100..94066c9 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -9,7 +9,7 @@ kotlin = "2.0.21" kotlinx-coroutines-core = "1.10.2" kotlinx-serialization = "1.7.1" libsu = "5.2.2" -morphe-patcher = "1.1.1" +morphe-patcher = "1.2.0-dev.6" # TODO: change to 1.2.0 before stable release [libraries] apkzlib = { module = "com.android.tools.build:apkzlib", version.ref = "android" }