Bump version to 3.2

This commit is contained in:
LoveSy 2022-03-30 15:03:53 +08:00
parent eb00b31d25
commit 4c4b08faab
3 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ repositories {
} }
dependencies { dependencies {
implementation "org.lsposed.lsplant:lsplant:3.1" implementation "org.lsposed.lsplant:lsplant:3.2"
} }
android { android {

View File

@ -113,7 +113,7 @@ publishing {
register<MavenPublication>("lsplant") { register<MavenPublication>("lsplant") {
group = "org.lsposed.lsplant" group = "org.lsposed.lsplant"
artifactId = "lsplant" artifactId = "lsplant"
version = "3.1" version = "3.2"
afterEvaluate { afterEvaluate {
from(components.getByName("release")) from(components.getByName("release"))
artifact(symbolsTask) artifact(symbolsTask)

View File

@ -92,7 +92,7 @@ struct InitInfo {
/// name, its field name, its source name and its method name by setting generated_* in \ref /// name, its field name, its source name and its method name by setting generated_* in \ref
/// InitInfo. /// InitInfo.
/// \note This function thread safe (you can call it simultaneously from multiple thread) /// \note This function thread safe (you can call it simultaneously from multiple thread)
/// but it's not atomic to the same \b target_method. That means #UnHook() or #Ishook() does not /// but it's not atomic to the same \b target_method. That means #UnHook() or #IsHooked() does not
/// guarantee to work properly on the same \p target_method before it returns. Also, simultaneously /// guarantee to work properly on the same \p target_method before it returns. Also, simultaneously
/// call on this function with the same \p target_method does not guarantee only one will success. /// call on this function with the same \p target_method does not guarantee only one will success.
/// If you call this with different \p hooker_object on the same target_method simultaneously, the /// If you call this with different \p hooker_object on the same target_method simultaneously, the