Publish libsu 5.2.0

This commit is contained in:
topjohnwu 2023-07-20 17:05:16 -07:00
parent fe925895c7
commit 4032a4d6bc
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
## 5.2.0
- [core] Shell status code `Shell.ROOT_MOUNT_MASTER` is no longer returned as there is no way to reliably determine this information.
## 5.1.0
- [core] New API `Shell.Job.enqueue()` which returns `Future<Shell.Result>` in case you need to retrive asynchronous results without using callbacks

View File

@ -24,7 +24,7 @@ repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
def libsuVersion = '5.1.0'
def libsuVersion = '5.2.0'
// The core module that provides APIs to a shell
implementation "com.github.topjohnwu.libsu:core:${libsuVersion}"