From ab90bf0f514eb20f88f7070c81d42385ef1c6ec4 Mon Sep 17 00:00:00 2001 From: Mattia Iavarone Date: Wed, 10 Jul 2019 19:06:42 -0300 Subject: [PATCH] Bump version --- README.md | 2 +- cameraview/build.gradle | 2 +- docs/_posts/2018-12-20-changelog.md | 3 ++- docs/_posts/2018-12-20-install.md | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2947bcff..78f591cd 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,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:2.0.0-beta05' +compile 'com.otaliastudios:cameraview:2.0.0-beta06' ``` - Fast & reliable diff --git a/cameraview/build.gradle b/cameraview/build.gradle index 7e806451..29bd2cad 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 = '2.0.0-beta05' +version = '2.0.0-beta06' group = 'com.otaliastudios' //region android dependencies diff --git a/docs/_posts/2018-12-20-changelog.md b/docs/_posts/2018-12-20-changelog.md index 1f8c0aed..80b42004 100644 --- a/docs/_posts/2018-12-20-changelog.md +++ b/docs/_posts/2018-12-20-changelog.md @@ -8,10 +8,11 @@ order: 3 New versions are released through GitHub, so the reference page is the [GitHub Releases](https://github.com/natario1/CameraView/releases) page. -### v2.0.0-beta06 (to be released) +### v2.0.0-beta06 - New: Full featured Camera2 integration! Use `cameraExperimental="true"` and `cameraEngine="camera2"` to test this out. ([#490][490]) - Improvement: we now choose a video recording profile that is compatible with the chosen size. Should fix some video recording issues. ([#477][477]) +- Improvement: most internals are now open to be accessed by subclassing. Feel free to open PRs with more protected methods to be overriden. ([#494][494]) - **Breaking change**: some public classes have been moved to different packages. See [table here](../extra/v1-migration-guide.html#repackaging). ([#482][482]) - **Breaking change**: the listener methods `onFocusStart` and `onFocusEnd` are now called `onAutoFocusStart` and `onAutoFocusEnd`. ([#484][484]) - **Breaking change**: the gesture actions `focus` and `focusWithMarker` have been removed and replaced by `autoFocus`, which shows no marker. ([#484][484]) diff --git a/docs/_posts/2018-12-20-install.md b/docs/_posts/2018-12-20-install.md index ab84bb9a..534e7850 100644 --- a/docs/_posts/2018-12-20-install.md +++ b/docs/_posts/2018-12-20-install.md @@ -24,7 +24,7 @@ allprojects { Then simply download the latest version: ```groovy -api 'com.otaliastudios:cameraview:2.0.0-beta05' +api 'com.otaliastudios:cameraview:2.0.0-beta06' ``` No other configuration steps are needed. \ No newline at end of file