Skip to content

Commit

Permalink
[Prepare for 1.1.1 release (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinatonic authored Nov 8, 2016
1 parent dc550db commit 93def31
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 13 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 1.1.1 *(2016-11-08)*
----------------------------
* Add minimum support for arbitrary characters.
* Update support and gradle dependencies.

Version 1.1.0 *(2016-08-11)*
----------------------------
* Performance optimizations for re-measure and re-layout.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Getting started
Add the ticker dependency to your `build.gradle`.

```groovy
compile 'com.robinhood.ticker:ticker:1.1.0'
compile 'com.robinhood.ticker:ticker:1.1.1'
```


Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
classpath 'com.android.tools.build:gradle:2.2.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=1.1.1-SNAPSHOT
VERSION_NAME=1.1.1
GROUP=com.robinhood.ticker

POM_DESCRIPTION=A textview for Android that supports scrolling text animation.
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Dec 28 10:00:20 PST 2015
#Tue Nov 08 09:47:04 PST 2016
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
10 changes: 5 additions & 5 deletions ticker-sample/build.gradle
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
compileSdkVersion 25
buildToolsVersion "25.0.0"

defaultConfig {
applicationId "com.robinhood.ticker.sample"
minSdkVersion 12
targetSdkVersion 24
targetSdkVersion 25
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':ticker')

compile 'com.android.support:appcompat-v7:24.2.0'
compile 'com.android.support:recyclerview-v7:24.2.0'
compile 'com.android.support:appcompat-v7:25.0.0'
compile 'com.android.support:recyclerview-v7:25.0.0'

compile 'io.reactivex:rxjava:1.1.1'
compile 'io.reactivex:rxandroid:1.1.0'
Expand Down
6 changes: 3 additions & 3 deletions ticker/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
compileSdkVersion 25
buildToolsVersion "25.0.0"

resourcePrefix 'ticker_'

defaultConfig {
minSdkVersion 12
targetSdkVersion 24
targetSdkVersion 25
}
}

Expand Down

0 comments on commit 93def31

Please sign in to comment.