From 4c4b08faab9206ab44f7b041c8f49661a8df8b0d Mon Sep 17 00:00:00 2001 From: LoveSy Date: Wed, 30 Mar 2022 15:03:53 +0800 Subject: [PATCH] Bump version to 3.2 --- README.md | 2 +- lsplant/build.gradle.kts | 2 +- lsplant/src/main/jni/include/lsplant.hpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8b457bf..988abc2 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ repositories { } dependencies { - implementation "org.lsposed.lsplant:lsplant:3.1" + implementation "org.lsposed.lsplant:lsplant:3.2" } android { diff --git a/lsplant/build.gradle.kts b/lsplant/build.gradle.kts index 1c3af23..39eaf34 100644 --- a/lsplant/build.gradle.kts +++ b/lsplant/build.gradle.kts @@ -113,7 +113,7 @@ publishing { register("lsplant") { group = "org.lsposed.lsplant" artifactId = "lsplant" - version = "3.1" + version = "3.2" afterEvaluate { from(components.getByName("release")) artifact(symbolsTask) diff --git a/lsplant/src/main/jni/include/lsplant.hpp b/lsplant/src/main/jni/include/lsplant.hpp index e16fcac..0df3b25 100644 --- a/lsplant/src/main/jni/include/lsplant.hpp +++ b/lsplant/src/main/jni/include/lsplant.hpp @@ -92,7 +92,7 @@ struct InitInfo { /// name, its field name, its source name and its method name by setting generated_* in \ref /// InitInfo. /// \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 /// 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