From 92fc01b61565d79fc870c0a973bf7b47989b9dcb Mon Sep 17 00:00:00 2001 From: ThibaultBee <37510686+ThibaultBee@users.noreply.github.com> Date: Mon, 26 Aug 2024 16:03:55 +0200 Subject: [PATCH] chore(version): bump to 1.8.1 --- CHANGELOG.md | 13 +++++++++++++ README.md | 4 ++-- build.gradle.kts | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a86fc08..99e4af2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ Changelog ========== +Version 1.8.1 +------------- + +## Dependencies: + +- srt 1.5.3 +- openssl 3.0.9 + +## Bug fixes: + +- Fix `SrtUrl` parsing when stream id + has [stream id syntax](https://github.com/Haivision/srt/blob/master/docs/features/access-control.md?plain=1) + Version 1.8.0 ------------- diff --git a/README.md b/README.md index 243a8a2b..8e9ad83c 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.0' + implementation 'io.github.thibaultbee.srtdroid:srtdroid-core:1.8.1' // If you use Kotlin Coroutines, you can use srtdroid-ktx - implementation 'io.github.thibaultbee.srtdroid:srtdroid-ktx:1.8.0' + implementation 'io.github.thibaultbee.srtdroid:srtdroid-ktx:1.8.1' } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 853c9d3e..3ce69c54 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,7 +12,7 @@ plugins { allprojects { group = "io.github.thibaultbee.srtdroid" - version = "1.8.0" + version = "1.8.1" } subprojects {