From 11ea6e4e914a1eee17fbfdc3d1636db69efab68f Mon Sep 17 00:00:00 2001 From: Nathanael Silverman Date: Tue, 6 Nov 2018 16:30:19 -0800 Subject: [PATCH] Prepare for release 1.2.0 --- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- gradle.properties | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e0daf08..fe95a4d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 1.2.0 (November 6, 2018) + +- Set Android version to 28. +- Migrated to AndroidX. +- Updated dependencies (ButterKnife, ConstraintLayout, Gradle, Kotlin, Mockito, Testing Compile). +- Fixed Samsung-specific crash related to `android:elevation` on Android version 19. + # 1.1.0 (October 23, 2018) - Updated the sample app. diff --git a/README.md b/README.md index 0b6993b7..b24f8964 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.1.0' + implementation 'com.airbnb.android:paris:1.2.0' // If you're using Paris annotations. - kapt 'com.airbnb.android:paris-processor:1.1.0' + kapt 'com.airbnb.android:paris-processor:1.2.0' } ``` diff --git a/gradle.properties b/gradle.properties index 5b41ce0d..c813486b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=1.1.0 +VERSION_NAME=1.2.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