diff --git a/CHANGELOG.md b/CHANGELOG.md index ef41bf3..db7f0ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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_ diff --git a/README.md b/README.md index e46376b..6a3753b 100644 --- a/README.md +++ b/README.md @@ -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: @@ -40,7 +40,7 @@ Maven: com.github.johnkil.android-robototextview robototextview - 2.4.2 + 2.4.3 aar ``` @@ -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")) { diff --git a/gradle.properties b/gradle.properties index 864e14b..6596b52 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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.