Skip to content

Commit 4f08aef

Browse files
committed
v1.6 Release
v1.6 Release
1 parent 2e2aa36 commit 4f08aef

File tree

4 files changed

+20
-6
lines changed

4 files changed

+20
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.6] - 2020-01-06
10+
### Changed
11+
* Improved UI/UX of sample app
12+
* Removed Bitmap Deprecated Property [#33](https://github.com/Dhaval2404/ImagePicker/issues/33) (Special Thanks to [nauhalf](https://github.com/nauhalf))
13+
* 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))
14+
* Fixed uCrop Crash Issue [#42](https://github.com/Dhaval2404/ImagePicker/issues/42)
15+
916
## [1.5] - 2019-10-14
1017
### Added
1118
* 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))

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Almost 90% of the app that I have developed has Image upload feature. To simplif
3737
```
3838

3939
```groovy
40-
implementation 'com.github.dhaval2404:imagepicker:1.5'
40+
implementation 'com.github.dhaval2404:imagepicker:1.6'
4141
```
4242

4343
**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
215215
216216
# ✔️Changelog
217217
218+
### Version: 1.6
219+
220+
* Improved UI/UX of sample app
221+
* Removed Bitmap Deprecated Property [#33](https://github.com/Dhaval2404/ImagePicker/issues/33) (Special Thanks to [nauhalf](https://github.com/nauhalf))
222+
* 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))
223+
* Fixed uCrop Crash Issue [#42](https://github.com/Dhaval2404/ImagePicker/issues/42)
224+
218225
### Version: 1.5
219226
220227
* Fixed app crash issue, due to Camera Permission in manifest [#34](https://github.com/Dhaval2404/ImagePicker/issues/34)

imagepicker/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ android {
1313
defaultConfig {
1414
minSdkVersion 19
1515
targetSdkVersion 28
16-
versionCode 6
17-
versionName "1.5"
16+
versionCode 7
17+
versionName "1.6"
1818

1919
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2020
}
@@ -69,7 +69,7 @@ ext {
6969
siteUrl = 'https://github.com/Dhaval2404/ImagePicker/'
7070
gitUrl = 'https://github.com/Dhaval2404/ImagePicker.git'
7171

72-
libraryVersion = '1.5'
72+
libraryVersion = '1.6'
7373
//If you are uploading new library try : gradlew install
7474
//If you are updating existing library then execute: gradlew bintrayUpload
7575
//In both the case don't forgot to put bintray credentials in local.properties file.

sample/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ android {
1212
applicationId "com.github.dhaval2404.imagepicker.sample"
1313
minSdkVersion 19
1414
targetSdkVersion 28
15-
versionCode 6
16-
versionName "1.5"
15+
versionCode 7
16+
versionName "1.6"
1717
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1818
vectorDrawables.useSupportLibrary = true
1919
}

0 commit comments

Comments
 (0)