Skip to content

Commit

Permalink
Prepare release 2.4.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkil committed Nov 9, 2015
1 parent 1b33c32 commit 9a52ff5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ Change Log
==========


## Version 2.4.3

_2015-09-11_

* Implemented `RobotoTextAppearanceSpan`.
* Updated build tools and dependencies (Gradle Plugin 1.5.0-beta2, AppCompat v23.1).


## Version 2.4.2

_2015-08-31_
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.4.2'
compile 'com.github.johnkil.android-robototextview:robototextview:2.4.3'
```

Maven:
Expand All @@ -40,7 +40,7 @@ Maven:
<dependency>
<groupId>com.github.johnkil.android-robototextview</groupId>
<artifactId>robototextview</artifactId>
<version>2.4.2</version>
<version>2.4.3</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.4.2/assets/fonts")
File fonts = file("${projectDir}/build/intermediates/exploded-aar/com.github.johnkil.android-robototextview/robototextview/2.4.3/assets/fonts")
if (fonts.exists()) {
for (File file : fonts.listFiles()) {
if (file.getName().contains("RobotoSlab")) {
Expand Down
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.4.3-SNAPSHOT
VERSION_NAME=2.4.3

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

0 comments on commit 9a52ff5

Please sign in to comment.