diff --git a/CHANGELOG.md b/CHANGELOG.md index c800c8d..2c3269d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +Version 2.0.2 *(2019-08-01)* +---------------------------- +* Add support for preferred scrolling direction. + Version 2.0.0 *(2018-04-20)* ---------------------------- Please refer to the diff --git a/README.md b/README.md index 23e2aff..10d70fe 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Getting started Add the ticker dependency to your `build.gradle`. ```groovy -implementation 'com.robinhood.ticker:ticker:2.0.1' +implementation 'com.robinhood.ticker:ticker:2.0.2' ``` diff --git a/build.gradle b/build.gradle index 55db43f..c5c31db 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ buildscript { google() } dependencies { - classpath 'com.android.tools.build:gradle:3.1.4' + classpath 'com.android.tools.build:gradle:3.4.2' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/gradle.properties b/gradle.properties index 6275927..b8fe8fb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=2.0.1 +VERSION_NAME=2.0.2 GROUP=com.robinhood.ticker POM_DESCRIPTION=A textview for Android that supports scrolling text animation. diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index a4fc03d..ee69dd6 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-4.8-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/ticker-sample/build.gradle b/ticker-sample/build.gradle index e3075b2..d491ec6 100644 --- a/ticker-sample/build.gradle +++ b/ticker-sample/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.application' android { compileSdkVersion 28 - buildToolsVersion '28.0.2' + buildToolsVersion '28.0.3' defaultConfig { applicationId "com.robinhood.ticker.sample" @@ -14,6 +14,6 @@ android { dependencies { implementation project(':ticker') - implementation 'androidx.appcompat:appcompat:1.0.0-rc02' - implementation 'androidx.recyclerview:recyclerview:1.0.0-rc02' + implementation 'androidx.appcompat:appcompat:1.1.0-rc01' + implementation 'androidx.recyclerview:recyclerview:1.1.0-beta01' } diff --git a/ticker/build.gradle b/ticker/build.gradle index aa43df3..b200dfd 100644 --- a/ticker/build.gradle +++ b/ticker/build.gradle @@ -2,11 +2,12 @@ apply plugin: 'com.android.library' android { compileSdkVersion 28 - buildToolsVersion '28.0.2' + buildToolsVersion '28.0.3' resourcePrefix 'ticker_' defaultConfig { + //noinspection MinSdkTooLow minSdkVersion 12 targetSdkVersion 28 } @@ -14,7 +15,7 @@ android { dependencies { testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.21.0' + testImplementation 'org.mockito:mockito-core:2.24.0' } apply from: './gradle-mvn-push.gradle'