Skip to content

Commit a81a188

Browse files
committed
version 1.0.9
1 parent aaf22de commit a81a188

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ShadowHook
22

33
![](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)
4-
![](https://img.shields.io/badge/release-1.0.8-red.svg?style=flat)
4+
![](https://img.shields.io/badge/release-1.0.9-red.svg?style=flat)
55
![](https://img.shields.io/badge/Android-4.1%20--%2014-blue.svg?style=flat)
66
![](https://img.shields.io/badge/arch-armeabi--v7a%20%7C%20arm64--v8a-blue.svg?style=flat)
77

@@ -49,7 +49,7 @@ android {
4949
}
5050
5151
dependencies {
52-
implementation 'com.bytedance.android:shadowhook:1.0.8'
52+
implementation 'com.bytedance.android:shadowhook:1.0.9'
5353
}
5454
```
5555

README.zh-CN.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ShadowHook
22

33
![](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)
4-
![](https://img.shields.io/badge/release-1.0.8-red.svg?style=flat)
4+
![](https://img.shields.io/badge/release-1.0.9-red.svg?style=flat)
55
![](https://img.shields.io/badge/Android-4.1%20--%2014-blue.svg?style=flat)
66
![](https://img.shields.io/badge/arch-armeabi--v7a%20%7C%20arm64--v8a-blue.svg?style=flat)
77

@@ -49,7 +49,7 @@ android {
4949
}
5050
5151
dependencies {
52-
implementation 'com.bytedance.android:shadowhook:1.0.8'
52+
implementation 'com.bytedance.android:shadowhook:1.0.9'
5353
}
5454
```
5555

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ ext {
1818
abiFilters = "armeabi-v7a,arm64-v8a"
1919
useASAN = false
2020
dependencyOnLocalLibrary = true
21-
shadowhookVersion = "1.0.8"
21+
shadowhookVersion = "1.0.9"
2222

2323
POM_GROUP_ID = "com.bytedance.android"
2424
POM_ARTIFACT_ID = "shadowhook"
25-
POM_VERSION_NAME = "1.0.8"
25+
POM_VERSION_NAME = "1.0.9"
2626

2727
POM_NAME = "shadowhook"
2828
POM_DESCRIPTION = "ShadowHook is an Android inline hook library which supports thumb, arm32 and arm64."

shadowhook/src/main/cpp/include/shadowhook.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#include <stdbool.h>
3535
#include <stdint.h>
3636

37-
#define SHADOWHOOK_VERSION "1.0.8"
37+
#define SHADOWHOOK_VERSION "1.0.9"
3838

3939
#define SHADOWHOOK_ERRNO_OK 0
4040
#define SHADOWHOOK_ERRNO_PENDING 1

0 commit comments

Comments
 (0)