From fac8ad6639049d10c918991711cc5599cba96a8c Mon Sep 17 00:00:00 2001 From: topjohnwu Date: Sun, 12 Dec 2021 19:58:42 -0800 Subject: [PATCH] Publish 3.2.1 --- CHANGELOG.md | 3 +++ README.md | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3b6e015..d669714e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 3.2.1 +- [service] Add new API `RootService.createBindTask(...)`. Check Javadoc for more details. + ## 3.2.0 - [service] All `RootService`s of a single app now run in the same root process. Each root service no longer runs in its own separate process. - [service] The `BroadcastReceiver` used internally for receiving the `IBinder` reference now uses random UUID as action, effectively making it private and unique per-session. This prevents malicious external apps from injecting its own services into your app. diff --git a/README.md b/README.md index 04878159..26b86eb9 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ repositories { maven { url 'https://jitpack.io' } } dependencies { - def libsuVersion = '3.2.0' + def libsuVersion = '3.2.1' // The core module is used by all other components implementation "com.github.topjohnwu.libsu:core:${libsuVersion}"