Skip to content

Commit

Permalink
chore(version): bump to 1.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Dec 16, 2024
1 parent 093ba0e commit c165bfc
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Changelog
==========

Version 1.8.5
-------------

## Dependencies:

- srt 1.5.3
- openssl 3.0.9

## Bug fixes:

- ktx: close socket when connection fails to avoid resource leak

Version 1.8.4
-------------

Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ Get srtdroid latest artifacts on MavenCentral.

```gradle
dependencies {
implementation 'io.github.thibaultbee.srtdroid:srtdroid-core:1.8.4'
implementation 'io.github.thibaultbee.srtdroid:srtdroid-core:1.8.5'
// If you use Kotlin Coroutines, you can use srtdroid-ktx
implementation 'io.github.thibaultbee.srtdroid:srtdroid-ktx:1.8.4'
implementation 'io.github.thibaultbee.srtdroid:srtdroid-ktx:1.8.5'
}
```

Expand Down Expand Up @@ -47,11 +47,13 @@ can use the `InputStream` API.
## Permissions

To use, `sendFile` and `recvFile`, you need to add `READ_EXTERNAL_STORAGE` (
or [`READ_MEDIA_*`](https://developer.android.com/about/versions/13/behavior-changes-13#granular-media-permissions)
or [
`READ_MEDIA_*`](https://developer.android.com/about/versions/13/behavior-changes-13#granular-media-permissions)
if your app targets Android 13 or higher)
and `WRITE_EXTERNAL_STORAGE` to your `AndroidManifest.xml`:

```xml

<manifest>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- If your app targets Android < 13 -->
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {

allprojects {
group = "io.github.thibaultbee.srtdroid"
version = "1.8.4"
version = "1.8.5"
}

subprojects {
Expand Down

0 comments on commit c165bfc

Please sign in to comment.