Bump version (#266)

pull/290/head v1.6.0
Mattia Iavarone 6 years ago committed by GitHub
parent 3d8bf1618c
commit 640ec2da08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 20
      CHANGELOG.md
  2. 2
      README.md
  3. 2
      cameraview/build.gradle

@ -1,3 +1,14 @@
## v1.6.0
- Lifecycle support. Use `setLifecycleOwner` instead of calling start, stop and destroy ([#265][265])
- Enhancement: provide synchronous version of CameraUtils.decodeBitmap thanks to [@athornz][athornz] ([#224][224])
- Enhancement: prevent possible context leak thanks to [@MatFl][MatFl] ([#245][245])
- Bug: fix crash when using default VideoCodec thanks to [@Namazed][Namazed] ([#264][264])
- Enhancement: CameraException.getReason() gives some insight about the error ([#265][265])
- Enhancement: Common crashes are now being posted to the error callback instead of crashing the app ([#265][265])
https://github.com/natario1/CameraView/compare/v1.5.1...v1.6.0
### v1.5.1 ### v1.5.1
- Bug: byte array length for Frames was incorrect thanks to [@ssakhavi][ssakhavi] ([#205][205]) - Bug: byte array length for Frames was incorrect thanks to [@ssakhavi][ssakhavi] ([#205][205])
@ -5,6 +16,8 @@
- Bug: import correctly the ExifInterface library ([#222][222]) - Bug: import correctly the ExifInterface library ([#222][222])
- Updated dependencies thanks to [@caleb-allen][caleb-allen] ([#190][190]) - Updated dependencies thanks to [@caleb-allen][caleb-allen] ([#190][190])
https://github.com/natario1/CameraView/compare/v1.5.0...v1.5.1
## v1.5.0 ## v1.5.0
- New: set encoder for video recordings with `cameraVideoCodec` ([#174][174]) - New: set encoder for video recordings with `cameraVideoCodec` ([#174][174])
@ -80,6 +93,7 @@ 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
[athornz]: https://github.com/athornz
[v-gar]: https://github.com/v-gar [v-gar]: https://github.com/v-gar
[andrewmunn]: https://github.com/andrewmunn [andrewmunn]: https://github.com/andrewmunn
[chaitanyaraghav]: https://github.com/chaitanyaraghav [chaitanyaraghav]: https://github.com/chaitanyaraghav
@ -89,6 +103,8 @@ https://github.com/natario1/CameraView/compare/v1.2.3...v1.3.0
[xp-vit]: https://github.com/xp-vit [xp-vit]: https://github.com/xp-vit
[caleb-allen]: https://github.com/caleb-allen [caleb-allen]: https://github.com/caleb-allen
[ssakhavi]: https://github.com/ssakhavi [ssakhavi]: https://github.com/ssakhavi
[MatFl]: https://github.com/MatFl
[Namazed]: https://github.com/Namazed
[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
@ -116,3 +132,7 @@ https://github.com/natario1/CameraView/compare/v1.2.3...v1.3.0
[190]: https://github.com/natario1/CameraView/pull/190 [190]: https://github.com/natario1/CameraView/pull/190
[205]: https://github.com/natario1/CameraView/pull/205 [205]: https://github.com/natario1/CameraView/pull/205
[222]: https://github.com/natario1/CameraView/pull/222 [222]: https://github.com/natario1/CameraView/pull/222
[224]: https://github.com/natario1/CameraView/pull/224
[245]: https://github.com/natario1/CameraView/pull/245
[264]: https://github.com/natario1/CameraView/pull/264
[265]: https://github.com/natario1/CameraView/pull/265

@ -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). See [CHANGELOG](https://github.com/natario1/CameraView/blob/master/CHANGELOG.md).
```groovy ```groovy
compile 'com.otaliastudios:cameraview:1.5.1' compile 'com.otaliastudios:cameraview:1.6.0'
``` ```
Make sure your project repositories include the `jcenter()`: Make sure your project repositories include the `jcenter()`:

@ -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.5.1' version = '1.6.0'
group = 'com.otaliastudios' group = 'com.otaliastudios'
//region android dependencies //region android dependencies

Loading…
Cancel
Save