Skip to content

Commit c177cb8

Browse files
committed
Releasing 4.3.0 containing ViewBinding support
1 parent 1f2ba5f commit c177cb8

File tree

3 files changed

+8
-13
lines changed

3 files changed

+8
-13
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ There are 2 artifacts for kotlin users that allow you to write Adapter Delegates
1919
## Dependencies
2020

2121
```
22-
implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl:4.2.0'
22+
implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl:4.3.0'
2323
2424
// If you use Kotlin Android Extensions and synthetic properties (alternative to findViewById())
25-
implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-layoutcontainer:4.2.0'
25+
implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-layoutcontainer:4.3.0'
2626
2727
// If you use ViewBinding
28-
implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-viewbinding:4.2.0'
28+
implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-viewbinding:4.3.0'
2929
```
3030

3131
## How to use it
@@ -140,7 +140,7 @@ fun catAdapterDelegate() = adapterDelegate<Cat, Animal> {
140140
This library is available on maven central:
141141

142142
```groovy
143-
implementation 'com.hannesdorfmann:adapterdelegates4:4.2.0'
143+
implementation 'com.hannesdorfmann:adapterdelegates4:4.3.0'
144144
```
145145
[![Build Status](https://travis-ci.org/sockeqwe/AdapterDelegates.svg?branch=master)](https://travis-ci.org/sockeqwe/AdapterDelegates)
146146

@@ -339,7 +339,7 @@ public class DiffAdapter extends AsyncListDifferDelegationAdapter<Animal> {
339339
There is an additional artifact for the pagination library:
340340

341341
```gradle
342-
implementation 'com.hannesdorfmann:adapterdelegates4-pagination:4.2.0'
342+
implementation 'com.hannesdorfmann:adapterdelegates4-pagination:4.3.0'
343343
```
344344

345345
Use `PagedListDelegationAdapter`.

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1818
# org.gradle.parallel=true
1919

20-
VERSION_NAME=4.2.2-SNAPSHOT
21-
VERSION_CODE=422-SNAPSHOT
20+
VERSION_NAME=4.3.1-SNAPSHOT
21+
VERSION_CODE=431-SNAPSHOT
2222
GROUP=com.hannesdorfmann
2323

2424

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
11
POM_NAME = AdapterDelegates-Kotlin-Dsl
22
POM_ARTIFACT_ID = adapterdelegates4-kotlin-dsl-viewbinding
3-
POM_PACKAGING = aar
4-
5-
# AndroidX package structure to make it clearer which packages are bundled with the
6-
# Android operating system, and which are packaged with your app's APK
7-
# https://developer.android.com/topic/libraries/support-library/androidx-rn
8-
android.useAndroidX=true
3+
POM_PACKAGING = aar

0 commit comments

Comments
 (0)