diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e8f1d2d..3993dea0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +### v1.3.1 + +- Fixed a bug that would make setFacing and other APIs freeze the camera ([#86][86]) +- Fixed ConcurrentModificationExceptions during CameraListener callbacks ([#88][88]) + +https://github.com/natario1/CameraView/compare/v1.3.0...v1.3.1 + ## v1.3.0 - Ability to inject frame processors to do your own visual tasks (barcodes, facial recognition etc.) ([#82][82]) @@ -5,9 +12,13 @@ - Improved CameraUtils.decodeBitmap, you can now pass maxWidth and maxHeight to avoid OOM ([#83][83]) - Updated dependencies thanks to [@v-gar][v-gar] ([#73][73]) +https://github.com/natario1/CameraView/compare/v1.2.3...v1.3.0 + [v-gar]: https://github.com/v-gar [73]: https://github.com/natario1/CameraView/pull/73 [80]: https://github.com/natario1/CameraView/pull/80 [82]: https://github.com/natario1/CameraView/pull/82 [83]: https://github.com/natario1/CameraView/pull/83 +[86]: https://github.com/natario1/CameraView/pull/86 +[88]: https://github.com/natario1/CameraView/pull/88 diff --git a/README.md b/README.md index a0e4c682..8db2b20a 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. ```groovy -compile 'com.otaliastudios:cameraview:1.3.0' +compile 'com.otaliastudios:cameraview:1.3.1' ```
diff --git a/cameraview/build.gradle b/cameraview/build.gradle index 6e023990..f78295d2 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.0' +version = '1.3.1' group = 'com.otaliastudios' //region android dependencies