diff --git a/CHANGELOG.md b/CHANGELOG.md index 901999b6..1ea65908 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 1.6.0 (July 21, 2020) + +- Adding support for importantForAccessibility attribute (#138) + # 1.5.0 (May 20, 2020) - Adds support for incremental annotation processing diff --git a/README.md b/README.md index 7e4c8e93..854e1fac 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.5.0' + implementation 'com.airbnb.android:paris:1.6.0' // If you're using Paris annotations. - kapt 'com.airbnb.android:paris-processor:1.5.0' + kapt 'com.airbnb.android:paris-processor:1.6.0' } ``` diff --git a/build.gradle b/build.gradle index 5a7659b7..bda69548 100644 --- a/build.gradle +++ b/build.gradle @@ -19,7 +19,7 @@ buildscript { classpath "com.jakewharton:butterknife-gradle-plugin:$BUTTERKNIFE_VERSION" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN_VERSION" classpath "com.github.ben-manes:gradle-versions-plugin:$VERSIONS_VERSION" - classpath 'com.vanniktech:gradle-maven-publish-plugin:0.11.1' + classpath 'com.vanniktech:gradle-maven-publish-plugin:0.12.0' } } diff --git a/gradle.properties b/gradle.properties index 2c7e88a4..2e33aa88 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=1.5.0 +VERSION_NAME=1.6.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