From 84577fe9853e929004216a2e8dfd0c34c1bbc097 Mon Sep 17 00:00:00 2001 From: Nathanael Silverman Date: Fri, 14 Feb 2020 11:34:11 -0800 Subject: [PATCH] Prepare for release 1.4.0 --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- gradle.properties | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f5f0e204..03b1c5ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 1.4.0 (February 14, 2020) + +- Added support for namespaced resources. + # 1.3.1 (December 16, 2019) - Fixed precedence of `android:textAppearance` attribute. diff --git a/README.md b/README.md index ac7cf404..eb2f165c 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,9 @@ Paris lets you define and apply styles programmatically to Android views, includ In your project's `build.gradle`: ```gradle dependencies { - implementation 'com.airbnb.android:paris:1.3.1' + implementation 'com.airbnb.android:paris:1.4.0' // If you're using Paris annotations. - kapt 'com.airbnb.android:paris-processor:1.3.1' + kapt 'com.airbnb.android:paris-processor:1.4.0' } ``` diff --git a/gradle.properties b/gradle.properties index e24172fc..3415ff80 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=1.3.1 +VERSION_NAME=1.4.0 GROUP=com.airbnb.android POM_DESCRIPTION=Paris is a system for creating and applying styles to views in Android. POM_URL=https://github.com/airbnb/paris