Skip to content

Commit 48819b6

Browse files
committed
v1.2.1 Released
1 parent 109f7da commit 48819b6

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Yet another Color Picker Library for Android. It is highly customizable and easy
3838
1. Gradle dependency:
3939

4040
```groovy
41-
implementation 'com.github.dhaval2404:colorpicker:1.2'
41+
implementation 'com.github.dhaval2404:colorpicker:1.2.1'
4242
```
4343

4444
2. The **ColorPicker** configuration is created using the builder pattern.
@@ -87,6 +87,7 @@ Yet another Color Picker Library for Android. It is highly customizable and easy
8787
<!-- Here you can add color of your choice -->
8888
<color name="positiveButtonTextColor">@color/colorAccent</color>
8989
<color name="negativeButtonTextColor">@color/colorAccent</color>
90+
<color name="bottomSheetDividerColor">#F5F5F5</color>
9091
</resources>
9192
```
9293

app/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.colorpicker.sample"
1313
minSdkVersion 21
1414
targetSdkVersion 29
15-
versionCode 3
16-
versionName "1.2"
15+
versionCode 4
16+
versionName "1.2.1"
1717
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1818
vectorDrawables.useSupportLibrary = true
1919
}

colorpicker/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ android {
1111
defaultConfig {
1212
minSdkVersion 21
1313
targetSdkVersion 29
14-
versionCode 3
15-
versionName "1.2"
14+
versionCode 4
15+
versionName "1.2.1"
1616

1717
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1818
consumerProguardFiles 'consumer-rules.pro'
@@ -64,7 +64,7 @@ ext {
6464
siteUrl = 'https://github.com/Dhaval2404/ColorPicker/'
6565
gitUrl = 'https://github.com/Dhaval2404/ColorPicker.git'
6666

67-
libraryVersion = '1.2'
67+
libraryVersion = '1.2.1'
6868
//If you are uploading new library try : gradlew install
6969
//If you are updating existing library then execute: gradlew bintrayUpload
7070
//In both the case don't forgot to put bintray credentials in local.properties file.

0 commit comments

Comments
 (0)