From 68d601a4d0360d26deecadbe496de0bf24bbdba9 Mon Sep 17 00:00:00 2001 From: Evgeny Shishkin Date: Fri, 26 Aug 2016 16:13:39 +0300 Subject: [PATCH] Prepare release 2.5.1 --- CHANGELOG.md | 7 +++++++ README.md | 8 ++++---- build.gradle | 11 ++++++----- gradle.properties | 2 +- gradle/wrapper/gradle-wrapper.properties | 2 +- 5 files changed, 19 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 688dcce..ad9162d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ Change Log ========== +## Version 2.5.1 + +_2016-08-26_ + + * Support AppCompat v24.2. + + ## Version 2.5.0 _2016-01-22_ diff --git a/README.md b/README.md index 9a228f9..0562f4b 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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: @@ -41,7 +41,7 @@ Maven: com.github.johnkil.android-robototextview robototextview - 2.5.0 + 2.5.1 aar ``` @@ -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")) { diff --git a/build.gradle b/build.gradle index 5012194..7ecd67d 100644 --- a/build.gradle +++ b/build.gradle @@ -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' } } @@ -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' } \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 3601eba..1ea5c92 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.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. diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 3e47a3b..936c207 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -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