diff --git a/README.md b/README.md index f946eac..68244af 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat) ![](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat) -![](https://img.shields.io/badge/release-1.1.4-red.svg?style=flat) +![](https://img.shields.io/badge/release-1.1.5-red.svg?style=flat) ![](https://img.shields.io/badge/Android-4.1%20--%2013-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) @@ -61,7 +61,7 @@ android { } dependencies { - implementation 'io.hexhacking:xdl:1.1.4' + implementation 'io.hexhacking:xdl:1.1.5' } ``` diff --git a/README.zh-CN.md b/README.zh-CN.md index ddcfbee..03ff4cd 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -2,7 +2,7 @@ ![](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat) ![](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat) -![](https://img.shields.io/badge/release-1.1.4-red.svg?style=flat) +![](https://img.shields.io/badge/release-1.1.5-red.svg?style=flat) ![](https://img.shields.io/badge/Android-4.1%20--%2013-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) @@ -61,7 +61,7 @@ android { } dependencies { - implementation 'io.hexhacking:xdl:1.1.4' + implementation 'io.hexhacking:xdl:1.1.5' } ``` diff --git a/build.gradle b/build.gradle index 19d0f9e..13fbcdc 100644 --- a/build.gradle +++ b/build.gradle @@ -21,7 +21,7 @@ ext { POM_GROUP_ID = "io.hexhacking" POM_ARTIFACT_ID = "xdl" - POM_VERSION_NAME = "1.1.4" + POM_VERSION_NAME = "1.1.5" POM_NAME = "xDL Android Lib" POM_DESCRIPTION = "xDL is an enhanced implementation of the Android DL series functions." diff --git a/xdl/src/main/cpp/include/xdl.h b/xdl/src/main/cpp/include/xdl.h index 1860f94..63dc9c7 100644 --- a/xdl/src/main/cpp/include/xdl.h +++ b/xdl/src/main/cpp/include/xdl.h @@ -22,7 +22,7 @@ // Created by caikelun on 2020-10-04. // -// xDL version: 1.1.4 +// xDL version: 1.1.5 // // xDL is an enhanced implementation of the Android DL series functions. // For more information, documentation, and the latest version please check: diff --git a/xdl_sample/build.gradle b/xdl_sample/build.gradle index d150547..910f22c 100644 --- a/xdl_sample/build.gradle +++ b/xdl_sample/build.gradle @@ -66,7 +66,7 @@ dependencies { if (rootProject.ext.dependencyOnLocalLibrary) { implementation project(':xdl') } else { - implementation 'io.hexhacking:xdl:1.1.4' + implementation 'io.hexhacking:xdl:1.1.5' } }