From 1fee2a5f16b820b006dc00babd9bdd2fdddef2da Mon Sep 17 00:00:00 2001 From: Nathanael Silverman Date: Mon, 16 Dec 2019 12:41:19 -0800 Subject: [PATCH] Prepare for release 1.3.1 --- CHANGELOG.md | 5 +++++ README.md | 4 ++-- gradle.properties | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd98cb9f..f5f0e204 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 1.3.1 (December 16, 2019) + +- Fixed precedence of `android:textAppearance` attribute. +- Fixed theme attributes not being applied through programmatic styles. + # 1.3.0 (July 16, 2019) - New attribute support: diff --git a/README.md b/README.md index ab78f88e..ac7cf404 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.0' + implementation 'com.airbnb.android:paris:1.3.1' // If you're using Paris annotations. - kapt 'com.airbnb.android:paris-processor:1.3.0' + kapt 'com.airbnb.android:paris-processor:1.3.1' } ``` diff --git a/gradle.properties b/gradle.properties index e8bafce3..e24172fc 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=1.3.0 +VERSION_NAME=1.3.1 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