Skip to content

Commit adb414e

Browse files
committed
Release v1.2.1 with bellow description:
- [#9]: Added new attr and method to enable/disable search dismiss button, dismiss text and dismiss color - [#10]: Added new attr and method to set typeface - [#14]: Fixed clearSelection() not work for searchable mode - [#15]: Added new attr and method to custom dropdown list background and search dialog ListView background
1 parent e1560ee commit adb414e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,13 @@ The best Android spinner library for your android application with more customiz
130130

131131
```gradle
132132
dependencies {
133-
implementation 'com.github.chivorns:smartmaterialspinner:1.1.6'
133+
implementation 'com.github.chivorns:smartmaterialspinner:1.2.1'
134134
}
135135
```
136136
#### <a name="AndroidXGradle"></a> AndroidX Project
137137
```gradle
138138
dependencies {
139-
implementation 'com.github.chivorns.androidx:smartmaterialspinner:1.0.0'
139+
implementation 'com.github.chivorns.androidx:smartmaterialspinner:1.2.1'
140140
}
141141
```
142142

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
33
ext {
4-
kotlin_version = '1.3.70'
4+
kotlin_version = '1.3.71'
55
}
66

77
repositories {

demojava/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId "com.chivorn.smsp.demojava"
88
minSdkVersion 14
99
targetSdkVersion 28
10-
versionCode 4
11-
versionName "1.1.0"
10+
versionCode 5
11+
versionName "1.2.1"
1212
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1313
}
1414
buildTypes {

smartmaterialspinner/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ext {
55
LIBRARY_NAME = 'SmartMaterialSpinner'
66
PUBLISH_GROUP_ID = 'com.github.chivorns'
77
PUBLISH_ARTIFACT_ID = LIBRARY_NAME.toLowerCase()
8-
PUBLISH_VERSION = '1.1.6'
8+
PUBLISH_VERSION = '1.2.1'
99

1010
// Bintray
1111
BINTRAY_REPO = 'maven'
@@ -32,7 +32,7 @@ android {
3232
defaultConfig {
3333
minSdkVersion 14
3434
targetSdkVersion 28
35-
versionCode 21
35+
versionCode 22
3636
versionName "$PUBLISH_VERSION"
3737

3838
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

0 commit comments

Comments
 (0)