From c177cb85dcc3f881f3e8c4abed59a588908bb855 Mon Sep 17 00:00:00 2001 From: Hannes Dorfmann Date: Mon, 9 Mar 2020 17:41:43 +0100 Subject: [PATCH] Releasing 4.3.0 containing ViewBinding support --- README.md | 10 +++++----- gradle.properties | 4 ++-- kotlin-dsl-viewbinding/gradle.properties | 7 +------ 3 files changed, 8 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index cc74cfc..a8eb428 100644 --- a/README.md +++ b/README.md @@ -19,13 +19,13 @@ There are 2 artifacts for kotlin users that allow you to write Adapter Delegates ## Dependencies ``` -implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl:4.2.0' +implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl:4.3.0' // If you use Kotlin Android Extensions and synthetic properties (alternative to findViewById()) -implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-layoutcontainer:4.2.0' +implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-layoutcontainer:4.3.0' // If you use ViewBinding -implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-viewbinding:4.2.0' +implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-viewbinding:4.3.0' ``` ## How to use it @@ -140,7 +140,7 @@ fun catAdapterDelegate() = adapterDelegate { This library is available on maven central: ```groovy -implementation 'com.hannesdorfmann:adapterdelegates4:4.2.0' +implementation 'com.hannesdorfmann:adapterdelegates4:4.3.0' ``` [![Build Status](https://travis-ci.org/sockeqwe/AdapterDelegates.svg?branch=master)](https://travis-ci.org/sockeqwe/AdapterDelegates) @@ -339,7 +339,7 @@ public class DiffAdapter extends AsyncListDifferDelegationAdapter { There is an additional artifact for the pagination library: ```gradle -implementation 'com.hannesdorfmann:adapterdelegates4-pagination:4.2.0' +implementation 'com.hannesdorfmann:adapterdelegates4-pagination:4.3.0' ``` Use `PagedListDelegationAdapter`. diff --git a/gradle.properties b/gradle.properties index 98f146d..490e0ca 100644 --- a/gradle.properties +++ b/gradle.properties @@ -17,8 +17,8 @@ # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true -VERSION_NAME=4.2.2-SNAPSHOT -VERSION_CODE=422-SNAPSHOT +VERSION_NAME=4.3.1-SNAPSHOT +VERSION_CODE=431-SNAPSHOT GROUP=com.hannesdorfmann diff --git a/kotlin-dsl-viewbinding/gradle.properties b/kotlin-dsl-viewbinding/gradle.properties index 5f5165b..3d4ab5f 100644 --- a/kotlin-dsl-viewbinding/gradle.properties +++ b/kotlin-dsl-viewbinding/gradle.properties @@ -1,8 +1,3 @@ POM_NAME = AdapterDelegates-Kotlin-Dsl POM_ARTIFACT_ID = adapterdelegates4-kotlin-dsl-viewbinding -POM_PACKAGING = aar - -# AndroidX package structure to make it clearer which packages are bundled with the -# Android operating system, and which are packaged with your app's APK -# https://developer.android.com/topic/libraries/support-library/androidx-rn -android.useAndroidX=true \ No newline at end of file +POM_PACKAGING = aar \ No newline at end of file