From 0200e2cf611dda18bfe3689057653cdf4a88a977 Mon Sep 17 00:00:00 2001 From: Mattia Iavarone Date: Fri, 2 Mar 2018 18:06:42 +0100 Subject: [PATCH] Bump version (#175) --- CHANGELOG.md | 15 +++++++++++++++ README.md | 2 +- cameraview/build.gradle | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c855c2e..8fcabb3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## v1.5.0 + +- New: set encoder for video recordings with `cameraVideoCodec` ([#174][174]) +- New: set max duration for videos with `cameraVideoMaxDuration` ([#172][172]) +- Enhancement: reduced lag with continuous gestures (ev, zoom) ([#170][170]) +- Bug: tap to focus was crashing on some devices ([#167][167]) +- Bug: capturePicture was breaking if followed by another event soon after ([#173][173]) + +https://github.com/natario1/CameraView/compare/v1.4.2...v1.5.0 + ### v1.4.2 - Add prefix to XML resources so they don't collide, thanks to [@RocketRider][RocketRider] ([#162][162]) @@ -89,3 +99,8 @@ https://github.com/natario1/CameraView/compare/v1.2.3...v1.3.0 [133]: https://github.com/natario1/CameraView/pull/133 [143]: https://github.com/natario1/CameraView/pull/143 [162]: https://github.com/natario1/CameraView/pull/162 +[167]: https://github.com/natario1/CameraView/pull/167 +[170]: https://github.com/natario1/CameraView/pull/170 +[172]: https://github.com/natario1/CameraView/pull/172 +[173]: https://github.com/natario1/CameraView/pull/173 +[174]: https://github.com/natario1/CameraView/pull/174 diff --git a/README.md b/README.md index 246f30d4..a4ec4dfa 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ addressing most of the common issues and needs, and still leaving you with flexi See [CHANGELOG](https://github.com/natario1/CameraView/blob/master/CHANGELOG.md). ```groovy -compile 'com.otaliastudios:cameraview:1.4.2' +compile 'com.otaliastudios:cameraview:1.5.0' ``` Make sure your project repositories include the `jcenter()`: diff --git a/cameraview/build.gradle b/cameraview/build.gradle index 0f265ced..7ace1dd9 100644 --- a/cameraview/build.gradle +++ b/cameraview/build.gradle @@ -3,7 +3,7 @@ apply plugin: 'com.github.dcendents.android-maven' apply plugin: 'com.jfrog.bintray' // Required by bintray -version = '1.4.2' +version = '1.5.0' group = 'com.otaliastudios' //region android dependencies