Skip to content

Commit 0259bc5

Browse files
committed
Release v1.1.3
- Update DropDownVerticalOffset to display in correct Y position - Fix single line error not work when call setMultilineError(false) after setErrorText() - Fix onItemSelected call twice when set reselectable to true
1 parent 5eaed28 commit 0259bc5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

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

114114
```gradle
115115
dependencies {
116-
implementation 'com.github.chivorns:smartmaterialspinner:1.1.2'
116+
implementation 'com.github.chivorns:smartmaterialspinner:1.1.3'
117117
}
118118
```
119119

build.gradle

Lines changed: 2 additions & 2 deletions
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.40'
4+
kotlin_version = '1.3.41'
55
}
66

77
repositories {
@@ -10,7 +10,7 @@ buildscript {
1010
google()
1111
}
1212
dependencies {
13-
classpath 'com.android.tools.build:gradle:3.4.1'
13+
classpath 'com.android.tools.build:gradle:3.4.2'
1414
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1515
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
1616
classpath "com.github.dcendents:android-maven-gradle-plugin:2.1"

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.1.2'
8+
PUBLISH_VERSION = '1.1.3'
99

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

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

0 commit comments

Comments
 (0)