Skip to content

Commit 68d601a

Browse files
committed
Prepare release 2.5.1
1 parent 007bd49 commit 68d601a

5 files changed

Lines changed: 19 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@ Change Log
22
==========
33

44

5+
## Version 2.5.1
6+
7+
_2016-08-26_
8+
9+
* Support AppCompat v24.2.
10+
11+
512
## Version 2.5.0
613

714
_2016-01-22_

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Supported fonts:
2323
Compatibility
2424
-------------
2525

26-
This library is compatible from API 7 (Android 2.1).
26+
This library is compatible from API 9 (Android 2.3).
2727

2828

2929
Download
@@ -32,7 +32,7 @@ Download
3232
Gradle:
3333

3434
```groovy
35-
compile 'com.github.johnkil.android-robototextview:robototextview:2.5.0'
35+
compile 'com.github.johnkil.android-robototextview:robototextview:2.5.1'
3636
```
3737

3838
Maven:
@@ -41,7 +41,7 @@ Maven:
4141
<dependency>
4242
<groupId>com.github.johnkil.android-robototextview</groupId>
4343
<artifactId>robototextview</artifactId>
44-
<version>2.5.0</version>
44+
<version>2.5.1</version>
4545
<type>aar</type>
4646
</dependency>
4747
```
@@ -129,7 +129,7 @@ If you intend to use is not all fonts, the extra fonts can be removed.
129129
``` xml
130130
android.applicationVariants.all{ variant ->
131131
variant.mergeAssets.doFirst {
132-
File fonts = file("${projectDir}/build/intermediates/exploded-aar/com.github.johnkil.android-robototextview/robototextview/2.5.0/assets/fonts")
132+
File fonts = file("${projectDir}/build/intermediates/exploded-aar/com.github.johnkil.android-robototextview/robototextview/2.5.1/assets/fonts")
133133
if (fonts.exists()) {
134134
for (File file : fonts.listFiles()) {
135135
if (file.getName().contains("RobotoSlab")) {

build.gradle

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ buildscript {
33
jcenter()
44
}
55
dependencies {
6-
classpath 'com.android.tools.build:gradle:2.0.0-beta5'
6+
classpath 'com.android.tools.build:gradle:2.2.0-beta2'
7+
classpath 'com.github.ben-manes:gradle-versions-plugin:0.13.0'
78
}
89
}
910

@@ -14,10 +15,10 @@ allprojects {
1415
}
1516

1617
ext {
17-
minSdkVersion = 7
18-
compileSdkVersion = 23
19-
buildToolsVersion = '23.0.2'
18+
minSdkVersion = 9
19+
compileSdkVersion = 24
20+
buildToolsVersion = '24.0.2'
2021

2122
// Android dependencies.
22-
supportAppCompat = 'com.android.support:appcompat-v7:23.1.1'
23+
supportAppCompat = 'com.android.support:appcompat-v7:24.2.0'
2324
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# suppress inspection "UnusedProperty" for whole file
22
GROUP=com.github.johnkil.android-robototextview
3-
VERSION_NAME=2.5.1-SNAPSHOT
3+
VERSION_NAME=2.5.1
44

55
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.
66

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip

0 commit comments

Comments
 (0)