From 6f0db100821e459254bc231cd45ce031b96681ae Mon Sep 17 00:00:00 2001 From: Mudar Noufal Date: Mon, 18 May 2020 09:51:27 -0400 Subject: [PATCH] Release v0.9.1 --- README.md | 2 +- docs/_about/changelog.md | 6 ++++++ docs/_config.yml | 2 +- lib/build.gradle | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6b1fccd7..855c6903 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Transcodes and compresses video files into the MP4 format, with audio support, u Android codecs available on the device. Works on API 18+. ```groovy -implementation 'com.otaliastudios:transcoder:0.9.0' +implementation 'com.otaliastudios:transcoder:0.9.1' ``` - Fast transcoding to AAC/AVC diff --git a/docs/_about/changelog.md b/docs/_about/changelog.md index 4b0e7080..65f5a042 100644 --- a/docs/_about/changelog.md +++ b/docs/_about/changelog.md @@ -9,6 +9,12 @@ New versions are released through GitHub, so the reference page is the [GitHub R > Starting from 0.7.0, you can now [support development](https://github.com/sponsors/natario1) through the GitHub Sponsors program. Companies can share a tiny part of their revenue and get private support hours in return. Thanks! +### v0.9.1 + +- Improvement: `DefaultDataSink` new constructor with support for FileDescriptor. ([#87][87]) + + + ### v0.9.0 - New: `BlankAudioDataSource` can be used to add muted audio to a video-only track, thanks to [@mudar][mudar] ([#64][64]) diff --git a/docs/_config.yml b/docs/_config.yml index 7a0fbeb5..517fe8f0 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -12,7 +12,7 @@ google_analytics_id: 'UA-155077779-2' google_site_verification: '4x49i17ABIrSvUl52SeL0-t0341aTnWWaC62-FYCRT4' github: [metadata] # TODO What's this? github_repo: Transcoder -github_version: 0.9.0 +github_version: 0.9.1 github_branch: master baseurl: '/Transcoder' # Keep as an empty string if served up at the root collections: diff --git a/lib/build.gradle b/lib/build.gradle index 7d7b95aa..b0f4fc4b 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.9.0' +version = '0.9.1' group = 'com.otaliastudios' archivesBaseName = 'transcoder'