Skip to content

Commit c4a3168

Browse files
committed
Release v1.1.0
- Apply arrow up and down when select on spinner - Improve OnItemSelectedListener event to be called by default and when app override its method - Improve scroll to current selected item for search dialog after SoftKeyboard popup - Refactor ErrorTextAlignment to TextAlignment for reusable with other text alignment - Improve custom view
1 parent dd46b47 commit c4a3168

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ The best Android spinner library for your android application with more customiz
117117

118118
```gradle
119119
dependencies {
120-
implementation 'com.github.chivorns:smartmaterialspinner:1.0.14'
120+
implementation 'com.github.chivorns:smartmaterialspinner:1.1.0'
121121
}
122122
```
123123

build.gradle

Lines changed: 1 addition & 1 deletion
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.31'
4+
kotlin_version = '1.3.40'
55
}
66

77
repositories {

demojava/build.gradle

Lines changed: 2 additions & 2 deletions
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 3
11-
versionName "1.0.2"
10+
versionCode 4
11+
versionName "1.1.0"
1212
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1313
}
1414
buildTypes {

smartmaterialspinner/build.gradle

Lines changed: 2 additions & 2 deletions
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.0.14'
8+
PUBLISH_VERSION = '1.1.0'
99

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

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

0 commit comments

Comments
 (0)