Skip to content

Commit

Permalink
Releasing 4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sockeqwe committed Sep 5, 2019
1 parent f141bc0 commit d111a37
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ There are 2 artifacts for kotlin users that allow you to write Adapter Delegates
## Dependencies

```
implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl:4.1.1'
implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl:4.2.0'
// If you use Kotlin Android Extensions and synthetic properties (alternative to findViewById())
implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-layoutcontainer:4.1.1'
implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-layoutcontainer:4.2.0'
```

## How to use it
Expand Down Expand Up @@ -104,7 +104,7 @@ fun catAdapterDelegate() = adapterDelegate<Cat, Animal> {
This library is available on maven central:

```groovy
implementation 'com.hannesdorfmann:adapterdelegates4:4.1.1'
implementation 'com.hannesdorfmann:adapterdelegates4:4.2.0'
```
[![Build Status](https://travis-ci.org/sockeqwe/AdapterDelegates.svg?branch=master)](https://travis-ci.org/sockeqwe/AdapterDelegates)

Expand All @@ -113,7 +113,7 @@ Please note that since 4.0 the group id has been changed to `adapterdelegates4`.
### Snapshot

```groovy
implementation 'com.hannesdorfmann:adapterdelegates4:4.1.2-SNAPSHOT'
implementation 'com.hannesdorfmann:adapterdelegates4:4.2.1-SNAPSHOT'
```

You also have to add the url to the snapshot repository:
Expand Down Expand Up @@ -303,7 +303,7 @@ public class DiffAdapter extends AsyncListDifferDelegationAdapter<Animal> {
There is an additional artifact for the pagination library:

```gradle
implementation 'com.hannesdorfmann:adapterdelegates4-pagination:4.1.1'
implementation 'com.hannesdorfmann:adapterdelegates4-pagination:4.2.0'
```

Use `PagedListDelegationAdapter`.
Expand Down
2 changes: 1 addition & 1 deletion deploy_snapshot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ else
echo "signing.secretKeyRingFile=/home/travis/.gnupg/secring.gpg" >> library/gradle.properties
echo "org.gradle.parallel=false" >> gradle.properties
echo "org.gradle.configureondemand=false" >> gradle.properties
./gradlew --no-daemon :library:uploadArchives :paging:uploadArchives -Dorg.gradle.parallel=false -Dorg.gradle.configureondemand=false
./gradlew --no-daemon :library:uploadArchives :paging:uploadArchives :kotlin-dsl:uploadArchives :kotlin-dsl-layoutcontainer:uploadArchives -Dorg.gradle.parallel=false -Dorg.gradle.configureondemand=false
rm key.gpg
git reset --hard
echo "Snapshot deployed!"
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.2-SNAPSHOT
VERSION_CODE=412
VERSION_NAME=4.2.1-SNAPSHOT
VERSION_CODE=421-SNAPSHOT
GROUP=com.hannesdorfmann


Expand Down

0 comments on commit d111a37

Please sign in to comment.