From 4237a733bcb190d0b74e704267b988c72c5a8dc2 Mon Sep 17 00:00:00 2001 From: Christopher Jenkins Date: Thu, 5 Mar 2015 21:57:18 +0000 Subject: [PATCH] Release 2.0.2 --- CHANGELOG.md | 3 ++- README.md | 8 ++++---- calligraphy/gradle.properties | 2 +- gradle.properties | 8 ++++---- 4 files changed, 11 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84fb7d3..581d99c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ #Changelog -#2.0.2 (WIP) +#2.0.2 (05/01/2015) - Fixed `CalligraphyConfig.Builder` missing return statements. +- Fixed `createView()` getting the wrong parent context, Fixed: #135, #120 #2.0.1 (28/01/2014) - Throw exception on passing null into `CalligraphySpan` diff --git a/README.md b/README.md index 15a8bba..3e2fb92 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Calligraphy Custom fonts in Android an OK way. -Are you fed up of Custom views to set fonts? Or traversing the ViewTree to find TextViews? Yeah me too. +Are you fed up of Custom Views to set fonts? Or traversing the ViewTree to find TextViews? Yeah me too. ![alt text](https://github.com/chrisjenx/Calligraphy/raw/master/screenshot.png "ScreenShot Of Font Samples") @@ -13,11 +13,11 @@ Are you fed up of Custom views to set fonts? Or traversing the ViewTree to find ### Dependency -Include the dependency [Download (.aar)](http://search.maven.org/remotecontent?filepath=uk/co/chrisjenx/calligraphy/2.0.1/calligraphy-2.0.1.aar) : +Include the dependency [Download (.aar)](http://search.maven.org/remotecontent?filepath=uk/co/chrisjenx/calligraphy/2.0.2/calligraphy-2.0.2.aar) : ```groovy dependencies { - compile 'uk.co.chrisjenx:calligraphy:2.0.1' + compile 'uk.co.chrisjenx:calligraphy:2.0.2' } ``` ### Add Fonts @@ -29,7 +29,7 @@ Add your custom fonts to `assets/` all font definitions are relative to this pat ```xml ``` -**Note: The missing namespace, this __IS__ intention.** +**Note: The missing namespace, this __IS__ intentional.** ### Installation diff --git a/calligraphy/gradle.properties b/calligraphy/gradle.properties index 142caa8..9e72cf6 100644 --- a/calligraphy/gradle.properties +++ b/calligraphy/gradle.properties @@ -3,4 +3,4 @@ POM_NAME=Calligraphy POM_ARTIFACT_ID=calligraphy -POM_PACKAGING=jar \ No newline at end of file +POM_PACKAGING=aar \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index f0caabd..68deef6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -18,12 +18,12 @@ # org.gradle.parallel=true GROUP=uk.co.chrisjenx -VERSION_NAME=2.0.1 -VERSION_CODE=17 +VERSION_NAME=2.0.2 +VERSION_CODE=18 -POM_PACKAGING=jar +POM_PACKAGING=aar POM_URL=https://github.com/chrisjenx/Calligraphy -POM_DESCRIPTION=A modern implementation of the pull-to-refresh for Android +POM_DESCRIPTION=Custom Font injection through styles and attributes. POM_SCM_URL=https://github.com/chrisjenx/Calligraphy POM_SCM_CONNECTION=scm:git@github.com:chrisjenx/Calligraphy.git POM_SCM_DEV_CONNECTION=scm:git@github.com:chrisjenx/Calligraphy.git