Skip to content

Commit

Permalink
Prepare for 2.0.2 release & update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jinatonic committed Aug 1, 2019
1 parent c5f719f commit 5ef2e56
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
```


Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -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
6 changes: 3 additions & 3 deletions ticker-sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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'
}
5 changes: 3 additions & 2 deletions ticker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@ 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
}
}

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'

0 comments on commit 5ef2e56

Please sign in to comment.