From 26100450d3de4db6487d42d488b3c9924856e0ca Mon Sep 17 00:00:00 2001 From: vinaygaba Date: Wed, 11 Nov 2020 14:13:19 -0800 Subject: [PATCH] Prepare for release 1.7.2 --- 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 423a2f11..89f33520 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 1.7.2 (November 11, 2020) + +- Fixed ArrayOutOfBoundsException on certain devices when ImageView scaleType is set. + # 1.7.1 (July 27, 2020) - Change `ParisConfig` annotation to be applicable to class or interface types. New recommendation is to use it on an interface instead of a package diff --git a/README.md b/README.md index f4807f8a..eabd3f56 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.7.1' + implementation 'com.airbnb.android:paris:1.7.2' // If you're using Paris annotations. - kapt 'com.airbnb.android:paris-processor:1.7.1' + kapt 'com.airbnb.android:paris-processor:1.7.2' } ``` diff --git a/gradle.properties b/gradle.properties index cdd48a27..75048775 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=1.7.1 +VERSION_NAME=1.7.2 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