diff --git a/README.md b/README.md index f0cc360..b6c1e7c 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.3.1' +implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl:4.3.2' // If you use Kotlin Android Extensions and synthetic properties (alternative to findViewById()) -implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-layoutcontainer:4.3.1' +implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-layoutcontainer:4.3.2' // If you use ViewBinding -implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-viewbinding:4.3.1' +implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-viewbinding:4.3.2' ``` ## How to use it @@ -149,7 +149,7 @@ fun catAdapterDelegate() = adapterDelegate { This library is available on maven central: ```groovy -implementation 'com.hannesdorfmann:adapterdelegates4:4.3.1' +implementation 'com.hannesdorfmann:adapterdelegates4:4.3.2' ``` [![Build Status](https://travis-ci.org/sockeqwe/AdapterDelegates.svg?branch=master)](https://travis-ci.org/sockeqwe/AdapterDelegates) @@ -158,7 +158,7 @@ Please note that since 4.0 the group id has been changed to `adapterdelegates4`. ### Snapshot ```groovy -implementation 'com.hannesdorfmann:adapterdelegates4:4.3.2-SNAPSHOT' +implementation 'com.hannesdorfmann:adapterdelegates4:4.3.3-SNAPSHOT' ``` You also have to add the url to the snapshot repository: @@ -348,7 +348,7 @@ public class DiffAdapter extends AsyncListDifferDelegationAdapter { There is an additional artifact for the pagination library: ```gradle -implementation 'com.hannesdorfmann:adapterdelegates4-pagination:4.3.1' +implementation 'com.hannesdorfmann:adapterdelegates4-pagination:4.3.2' ``` Use `PagedListDelegationAdapter`. diff --git a/gradle.properties b/gradle.properties index 6a84800..544f5b7 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.3.2-SNAPSHOT -VERSION_CODE=432-SNAPSHOT +VERSION_NAME=4.3.2 +VERSION_CODE=432 GROUP=com.hannesdorfmann