From 6b6bcd793055d29d699af50c826b682b3806f0da Mon Sep 17 00:00:00 2001 From: Mattia Iavarone Date: Wed, 2 Oct 2019 13:48:28 +0200 Subject: [PATCH] Release v0.7.3 --- CHANGELOG.md | 10 ++++++++++ README.md | 2 +- lib/build.gradle | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b524863..3685c455 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +### v0.7.3 + +- Fix: fixed bug with files that do not have an audio track, thanks to [@pawegio][pawegio] ([#31][31]) +- Fix: fixed possible issues with FilePathDataSource ([#32][32]) + +https://github.com/natario1/Transcoder/compare/v0.7.2...v0.7.3 + ### v0.7.2 - Improvement: better input format detection. Fixes bugs with certain files ([#29][29]) @@ -47,6 +54,7 @@ https://github.com/natario1/Transcoder/compare/v0.5.0...v0.6.0 - Improvement: bug fixes and a new demo app to test transcoding options easily ([#4][4]) [Saqrag]: https://github.com/Saqrag +[pawegio]: https://github.com/pawegio [4]: https://github.com/natario1/Transcoder/pull/4 [5]: https://github.com/natario1/Transcoder/pull/5 @@ -60,3 +68,5 @@ https://github.com/natario1/Transcoder/compare/v0.5.0...v0.6.0 [18]: https://github.com/natario1/Transcoder/pull/18 [20]: https://github.com/natario1/Transcoder/pull/20 [29]: https://github.com/natario1/Transcoder/pull/29 +[31]: https://github.com/natario1/Transcoder/pull/31 +[32]: https://github.com/natario1/Transcoder/pull/32 diff --git a/README.md b/README.md index 39fc785f..ee7ad162 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Transcodes and compresses video files into the MP4 format, with audio support, using hardware accelerated Android codecs available on the device. Works on API 18+. ```groovy -implementation 'com.otaliastudios:transcoder:0.7.2' +implementation 'com.otaliastudios:transcoder:0.7.3' ``` - Fast transcoding to AAC/AVC diff --git a/lib/build.gradle b/lib/build.gradle index 018b4745..74399070 100644 --- a/lib/build.gradle +++ b/lib/build.gradle @@ -3,7 +3,7 @@ apply plugin: 'com.github.dcendents.android-maven' apply plugin: 'com.jfrog.bintray' // Required by bintray -version = '0.7.2' +version = '0.7.3' group = 'com.otaliastudios' archivesBaseName = 'transcoder'