diff --git a/CHANGELOG.md b/CHANGELOG.md index 293ae99..757477c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ Changelog ========== +Version 1.8.4 +------------- + +## Dependencies: + +- srt 1.5.3 +- openssl 3.0.9 + +## Refactor: + +- Put the native libraries in a single fat library to avoid conflicts with other libraries + Version 1.8.3 ------------- @@ -18,7 +30,6 @@ Version 1.8.3 - Coroutine socket: fix `equals` implementation - Coroutine socket: fix remote disconnect detection - Version 1.8.2 ------------- diff --git a/README.md b/README.md index d6c7fcc..4936c8d 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,9 @@ Get srtdroid latest artifacts on MavenCentral. ```gradle dependencies { - implementation 'io.github.thibaultbee.srtdroid:srtdroid-core:1.8.3' + implementation 'io.github.thibaultbee.srtdroid:srtdroid-core:1.8.4' // If you use Kotlin Coroutines, you can use srtdroid-ktx - implementation 'io.github.thibaultbee.srtdroid:srtdroid-ktx:1.8.3' + implementation 'io.github.thibaultbee.srtdroid:srtdroid-ktx:1.8.4' } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 690ffcf..ac9c77a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,7 +12,7 @@ plugins { allprojects { group = "io.github.thibaultbee.srtdroid" - version = "1.8.3" + version = "1.8.4" } subprojects {