Skip to content

Commit

Permalink
version 1.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
caikelun committed Jan 18, 2024
1 parent dbd2b7e commit 642257e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ByteHook

![](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)
![](https://img.shields.io/badge/release-1.0.9-red.svg?style=flat)
![](https://img.shields.io/badge/release-1.0.10-red.svg?style=flat)
![](https://img.shields.io/badge/Android-4.1%20--%2014-blue.svg?style=flat)
![](https://img.shields.io/badge/arch-armeabi--v7a%20%7C%20arm64--v8a%20%7C%20x86%20%7C%20x86__64-blue.svg?style=flat)

Expand Down Expand Up @@ -47,7 +47,7 @@ android {
}
dependencies {
implementation 'com.bytedance:bytehook:1.0.9'
implementation 'com.bytedance:bytehook:1.0.10'
}
```

Expand Down
4 changes: 2 additions & 2 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ByteHook

![](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)
![](https://img.shields.io/badge/release-1.0.9-red.svg?style=flat)
![](https://img.shields.io/badge/release-1.0.10-red.svg?style=flat)
![](https://img.shields.io/badge/Android-4.1%20--%2014-blue.svg?style=flat)
![](https://img.shields.io/badge/arch-armeabi--v7a%20%7C%20arm64--v8a%20%7C%20x86%20%7C%20x86__64-blue.svg?style=flat)

Expand Down Expand Up @@ -47,7 +47,7 @@ android {
}
dependencies {
implementation 'com.bytedance:bytehook:1.0.9'
implementation 'com.bytedance:bytehook:1.0.10'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ext {

POM_GROUP_ID = "com.bytedance"
POM_ARTIFACT_ID = "bytehook"
POM_VERSION_NAME = "1.0.9"
POM_VERSION_NAME = "1.0.10"

POM_NAME = "bytehook"
POM_DESCRIPTION = "ByteHook is an Android PLT hook library which supports armeabi-v7a, arm64-v8a, x86 and x86_64."
Expand Down
2 changes: 1 addition & 1 deletion bytehook/src/main/cpp/include/bytehook.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
#include <stdbool.h>
#include <stdint.h>

#define BYTEHOOK_VERSION "1.0.9"
#define BYTEHOOK_VERSION "1.0.10"

#define BYTEHOOK_STATUS_CODE_OK 0
#define BYTEHOOK_STATUS_CODE_UNINIT 1
Expand Down
2 changes: 1 addition & 1 deletion bytehook_sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ dependencies {
if (rootProject.ext.dependencyOnLocalLibrary) {
implementation project(':bytehook')
} else {
implementation 'com.bytedance:bytehook:1.0.9'
implementation 'com.bytedance:bytehook:1.0.10'
}
}

Expand Down

0 comments on commit 642257e

Please sign in to comment.