Skip to content

Commit

Permalink
Prepare release 2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkil committed Aug 26, 2016
1 parent 007bd49 commit 68d601a
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ Change Log
==========


## Version 2.5.1

_2016-08-26_

* Support AppCompat v24.2.


## Version 2.5.0

_2016-01-22_
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Supported fonts:
Compatibility
-------------

This library is compatible from API 7 (Android 2.1).
This library is compatible from API 9 (Android 2.3).


Download
Expand All @@ -32,7 +32,7 @@ Download
Gradle:

```groovy
compile 'com.github.johnkil.android-robototextview:robototextview:2.5.0'
compile 'com.github.johnkil.android-robototextview:robototextview:2.5.1'
```

Maven:
Expand All @@ -41,7 +41,7 @@ Maven:
<dependency>
<groupId>com.github.johnkil.android-robototextview</groupId>
<artifactId>robototextview</artifactId>
<version>2.5.0</version>
<version>2.5.1</version>
<type>aar</type>
</dependency>
```
Expand Down Expand Up @@ -129,7 +129,7 @@ If you intend to use is not all fonts, the extra fonts can be removed.
``` xml
android.applicationVariants.all{ variant ->
variant.mergeAssets.doFirst {
File fonts = file("${projectDir}/build/intermediates/exploded-aar/com.github.johnkil.android-robototextview/robototextview/2.5.0/assets/fonts")
File fonts = file("${projectDir}/build/intermediates/exploded-aar/com.github.johnkil.android-robototextview/robototextview/2.5.1/assets/fonts")
if (fonts.exists()) {
for (File file : fonts.listFiles()) {
if (file.getName().contains("RobotoSlab")) {
Expand Down
11 changes: 6 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0-beta5'
classpath 'com.android.tools.build:gradle:2.2.0-beta2'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.13.0'
}
}

Expand All @@ -14,10 +15,10 @@ allprojects {
}

ext {
minSdkVersion = 7
compileSdkVersion = 23
buildToolsVersion = '23.0.2'
minSdkVersion = 9
compileSdkVersion = 24
buildToolsVersion = '24.0.2'

// Android dependencies.
supportAppCompat = 'com.android.support:appcompat-v7:23.1.1'
supportAppCompat = 'com.android.support:appcompat-v7:24.2.0'
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# suppress inspection "UnusedProperty" for whole file
GROUP=com.github.johnkil.android-robototextview
VERSION_NAME=2.5.1-SNAPSHOT
VERSION_NAME=2.5.1

POM_DESCRIPTION=Implementation of the fragment with the ability to display indeterminate progress indicator when you are waiting for the initial dataImplementation of a TextView and all its direct/indirect subclasses with native support for the Roboto fonts, includes the brand new Roboto Slab and Roboto Mono fonts.

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ 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

0 comments on commit 68d601a

Please sign in to comment.