diff --git a/README.md b/README.md index eb9401df..4b553a52 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Android codecs available on the device. Works on API 21+. ```kotlin // build.gradle.kts dependencies { - implementation("io.deepmedia.community:transcoder-android:0.11.1") + implementation("io.deepmedia.community:transcoder-android:0.11.2") } ``` diff --git a/docs/changelog.mdx b/docs/changelog.mdx index a3fac8df..6defa6f1 100644 --- a/docs/changelog.mdx +++ b/docs/changelog.mdx @@ -8,6 +8,12 @@ New versions are released through GitHub, so the reference page is the [GitHub R ## 0.11.X +### 0.11.2 + +- Enhancement: support pass-through audio with more than 2 channels, thanks to [@natario1](https://github.com/natario1) ([#209](https://github.com/deepmedia/Transcoder/pull/209)) + +[Compare 0.11.1...0.11.2](https://github.com/deepmedia/Transcoder/compare/v0.11.1...v0.11.2). + ### 0.11.1 - Fix: add unbounded queue for drifted tracks during initialization, thanks to [@jumperson](https://github.com/jumperson) ([#166](https://github.com/deepmedia/Transcoder/pull/166)) diff --git a/lib-legacy/build.gradle.kts b/lib-legacy/build.gradle.kts index aae3c91c..e7b9a926 100644 --- a/lib-legacy/build.gradle.kts +++ b/lib-legacy/build.gradle.kts @@ -28,7 +28,7 @@ deployer { projectInfo { groupId = "com.otaliastudios" artifactId = "transcoder" - release.version = "0.11.1" // change :lib and README + release.version = "0.11.2" // change :lib and README description = "Accelerated video compression and transcoding on Android using MediaCodec APIs (no FFMPEG/LGPL licensing issues). Supports cropping to any dimension, concatenation, audio processing and much more." url = "https://opensource.deepmedia.io/transcoder" scm.fromGithub("deepmedia", "Transcoder") diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index 7770af4e..ecf39815 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -63,7 +63,7 @@ deployer { projectInfo { groupId = "io.deepmedia.community" artifactId = "transcoder-android" - release.version = "0.11.1" // change :lib-legacy and README + release.version = "0.11.2" // change :lib-legacy and README description = "Accelerated video compression and transcoding on Android using MediaCodec APIs (no FFMPEG/LGPL licensing issues). Supports cropping to any dimension, concatenation, audio processing and much more." url = "https://opensource.deepmedia.io/transcoder" scm.fromGithub("deepmedia", "Transcoder")