diff --git a/CHANGELOG.md b/CHANGELOG.md index cea42a6f..1ac13bab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.6] - 2020-01-06 +### Changed + * Improved UI/UX of sample app + * Removed Bitmap Deprecated Property [#33](https://github.com/Dhaval2404/ImagePicker/issues/33) (Special Thanks to [nauhalf](https://github.com/nauhalf)) + * Camera opens twice when "Don't keep activities" option is ON [#41](https://github.com/Dhaval2404/ImagePicker/issues/41) (Special Thanks to [benji101](https://github.com/benji101)) + * Fixed uCrop Crash Issue [#42](https://github.com/Dhaval2404/ImagePicker/issues/42) + ## [1.5] - 2019-10-14 ### Added * Added Option for Dynamic Crop Ratio. Let User choose aspect ratio [#36](https://github.com/Dhaval2404/ImagePicker/issues/36) (Special Thanks to [Dor-Sloim](https://github.com/Dor-Sloim)) diff --git a/README.md b/README.md index 4aff6620..d6b833db 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Almost 90% of the app that I have developed has Image upload feature. To simplif ``` ```groovy - implementation 'com.github.dhaval2404:imagepicker:1.5' + implementation 'com.github.dhaval2404:imagepicker:1.6' ``` **If you are yet to Migrate on AndroidX, Use support build artifact:** @@ -215,6 +215,13 @@ Almost 90% of the app that I have developed has Image upload feature. To simplif # ✔️Changelog +### Version: 1.6 + + * Improved UI/UX of sample app + * Removed Bitmap Deprecated Property [#33](https://github.com/Dhaval2404/ImagePicker/issues/33) (Special Thanks to [nauhalf](https://github.com/nauhalf)) + * Camera opens twice when "Don't keep activities" option is ON [#41](https://github.com/Dhaval2404/ImagePicker/issues/41) (Special Thanks to [benji101](https://github.com/benji101)) + * Fixed uCrop Crash Issue [#42](https://github.com/Dhaval2404/ImagePicker/issues/42) + ### Version: 1.5 * Fixed app crash issue, due to Camera Permission in manifest [#34](https://github.com/Dhaval2404/ImagePicker/issues/34) diff --git a/imagepicker/build.gradle b/imagepicker/build.gradle index 11963f3d..77337941 100644 --- a/imagepicker/build.gradle +++ b/imagepicker/build.gradle @@ -13,8 +13,8 @@ android { defaultConfig { minSdkVersion 19 targetSdkVersion 28 - versionCode 6 - versionName "1.5" + versionCode 7 + versionName "1.6" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } @@ -69,7 +69,7 @@ ext { siteUrl = 'https://github.com/Dhaval2404/ImagePicker/' gitUrl = 'https://github.com/Dhaval2404/ImagePicker.git' - libraryVersion = '1.5' + libraryVersion = '1.6' //If you are uploading new library try : gradlew install //If you are updating existing library then execute: gradlew bintrayUpload //In both the case don't forgot to put bintray credentials in local.properties file. diff --git a/sample/build.gradle b/sample/build.gradle index f808298e..a1cc50dc 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -12,8 +12,8 @@ android { applicationId "com.github.dhaval2404.imagepicker.sample" minSdkVersion 19 targetSdkVersion 28 - versionCode 6 - versionName "1.5" + versionCode 7 + versionName "1.6" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" vectorDrawables.useSupportLibrary = true }