Skip to content

Commit 818832c

Browse files
committed
v1.2 Released
Added Dark mode support & German translation
1 parent 9d00b99 commit 818832c

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

README.md

Lines changed: 5 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.1'
41+
implementation 'com.github.dhaval2404:colorpicker:1.2'
4242
```
4343

4444
2. The **ColorPicker** configuration is created using the builder pattern.
@@ -138,6 +138,10 @@ Yet another Color Picker Library for Android. It is highly customizable and easy
138138

139139
# ✔️Changelog
140140

141+
### Version: 1.2
142+
143+
* Added Dark mode support & German translation [#4](https://github.com/Dhaval2404/ColorPicker/pull/4)
144+
141145
### Version: 1.1
142146

143147
* Added option to change positive and negative button text color [#2](https://github.com/Dhaval2404/ImagePicker/issues/2)

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 2
16-
versionName "1.1"
15+
versionCode 3
16+
versionName "1.2"
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 2
15-
versionName "1.1"
14+
versionCode 3
15+
versionName "1.2"
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.1'
67+
libraryVersion = '1.2'
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)