From ffec81fe9466015aa5106d9343a20f832e215d22 Mon Sep 17 00:00:00 2001 From: Mattia Iavarone Date: Mon, 6 Nov 2017 23:41:21 +0100 Subject: [PATCH] Bump version --- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- cameraview/build.gradle | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3993dea07..b5343ee55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### v1.3.2 + +- Fixed a memory leak thanks to [@andrewmunn](andrewmunn) ([#92][92]) +- Reduced memory usage when using cropOutput thanks to [@RobertoMorelos](RobertoMorelos) ([#93][93]) +- Improved efficiency for Frame processors, recycle buffers and Frames ([#94][94]) + +https://github.com/natario1/CameraView/compare/v1.3.1...v1.3.2 + ### v1.3.1 - Fixed a bug that would make setFacing and other APIs freeze the camera ([#86][86]) @@ -15,6 +23,8 @@ https://github.com/natario1/CameraView/compare/v1.3.0...v1.3.1 https://github.com/natario1/CameraView/compare/v1.2.3...v1.3.0 [v-gar]: https://github.com/v-gar +[andrewmunn]: https://github.com/andrewmunn +[RobertoMorelos]: https://github.com/RobertoMorelos [73]: https://github.com/natario1/CameraView/pull/73 [80]: https://github.com/natario1/CameraView/pull/80 @@ -22,3 +32,6 @@ https://github.com/natario1/CameraView/compare/v1.2.3...v1.3.0 [83]: https://github.com/natario1/CameraView/pull/83 [86]: https://github.com/natario1/CameraView/pull/86 [88]: https://github.com/natario1/CameraView/pull/88 +[92]: https://github.com/natario1/CameraView/pull/92 +[93]: https://github.com/natario1/CameraView/pull/93 +[94]: https://github.com/natario1/CameraView/pull/94 diff --git a/README.md b/README.md index ace40ef7b..31dc6e491 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ CameraView is a well documented, high-level library that makes capturing picture addressing most of the common issues and needs, and still leaving you with flexibility where needed. See [CHANGELOG](https://github.com/natario1/CameraView/blob/master/CHANGELOG.md). ```groovy -compile 'com.otaliastudios:cameraview:1.3.1' +compile 'com.otaliastudios:cameraview:1.3.2' ```

diff --git a/cameraview/build.gradle b/cameraview/build.gradle index f78295d2f..c94ee033c 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.3.1' +version = '1.3.2' group = 'com.otaliastudios' //region android dependencies