Bump version

pull/97/head v1.3.2
Mattia Iavarone 7 years ago
parent a31dd1d57c
commit ffec81fe94
  1. 13
      CHANGELOG.md
  2. 2
      README.md
  3. 2
      cameraview/build.gradle

@ -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 ### v1.3.1
- Fixed a bug that would make setFacing and other APIs freeze the camera ([#86][86]) - 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 https://github.com/natario1/CameraView/compare/v1.2.3...v1.3.0
[v-gar]: https://github.com/v-gar [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 [73]: https://github.com/natario1/CameraView/pull/73
[80]: https://github.com/natario1/CameraView/pull/80 [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 [83]: https://github.com/natario1/CameraView/pull/83
[86]: https://github.com/natario1/CameraView/pull/86 [86]: https://github.com/natario1/CameraView/pull/86
[88]: https://github.com/natario1/CameraView/pull/88 [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

@ -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). 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 ```groovy
compile 'com.otaliastudios:cameraview:1.3.1' compile 'com.otaliastudios:cameraview:1.3.2'
``` ```
<p> <p>

@ -3,7 +3,7 @@ apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray' apply plugin: 'com.jfrog.bintray'
// Required by bintray // Required by bintray
version = '1.3.1' version = '1.3.2'
group = 'com.otaliastudios' group = 'com.otaliastudios'
//region android dependencies //region android dependencies

Loading…
Cancel
Save