Skip to content

Commit

Permalink
Update version (2.4.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkil committed Apr 22, 2015
1 parent 37fbabc commit 74b97fc
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ Change Log
==========


Version 2.4.0 *(2015-04-22)*
----------------------------

* Support AppCompat widgets from [AppCompat v22.1](http://android-developers.blogspot.ru/2015/04/android-support-library-221.html).
* Support Gradle 1.1.


Version 2.3.0 *(2015-01-23)*
----------------------------

Expand All @@ -12,7 +19,7 @@ Version 2.3.0 *(2015-01-23)*
Version 2.2.0 *(2014-10-06)*
----------------------------

* Imlemented `RobotoTypefaceSpan`.
* Implemented `RobotoTypefaceSpan`.
* Use Anti-Alias rendering.
* Support Gradle 0.13.

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Download
Gradle:

```groovy
compile 'com.github.johnkil.android-robototextview:robototextview:2.3.0'
compile 'com.github.johnkil.android-robototextview:robototextview:2.4.0'
```

Maven:
Expand All @@ -40,7 +40,7 @@ Maven:
<dependency>
<groupId>com.github.johnkil.android-robototextview</groupId>
<artifactId>robototextview</artifactId>
<version>2.3.0</version>
<version>2.4.0</version>
<type>aar</type>
</dependency>
```
Expand Down Expand Up @@ -128,7 +128,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.3.0/assets/fonts")
File fonts = file("${projectDir}/build/intermediates/exploded-aar/com.github.johnkil.android-robototextview/robototextview/2.4.0/assets/fonts")
if (fonts.exists()) {
for (File file : fonts.listFiles()) {
if (file.getName().contains("RobotoSlab")) {
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION_NAME=2.3.0-SNAPSHOT
VERSION_CODE=11
VERSION_NAME=2.4.0-SNAPSHOT
VERSION_CODE=12
GROUP=com.github.johnkil.android-robototextview

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 fonts.
Expand Down
4 changes: 2 additions & 2 deletions robototextview-sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.devspark.robototextview.sample"
minSdkVersion 7
targetSdkVersion 22
versionCode 11
versionName "2.3.0"
versionCode 12
versionName "2.4.0"
}
}

Expand Down
4 changes: 2 additions & 2 deletions robototextview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
defaultConfig {
minSdkVersion 7
targetSdkVersion 22
versionCode 11
versionName "2.3.0"
versionCode 12
versionName "2.4.0"
}

sourceSets {
Expand Down

0 comments on commit 74b97fc

Please sign in to comment.