Skip to content
This repository has been archived by the owner on Jun 26, 2019. It is now read-only.

Commit

Permalink
Prepare for next release interaction
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardoxh committed Mar 30, 2018
1 parent 86703b3 commit 1d5288d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ retrofit.create(SuperService.class)
.getPimba()
.observe(this, new Observer<Resource<Pimba>>() {
@Override
public void onChange(@Nullable Resource<Pimba> resource) {
public void onChange(Resource<Pimba> resource) {
if (resource.isSuccess()) {
//doSuccessAction with resource.resource
} else {
Expand All @@ -53,7 +53,7 @@ Gradle dependency
-----------------
```groovy
dependencies {
implementation "com.github.leonardoxh:retrofit2-livedata-adapter:1.1.0"
implementation "com.github.leonardoxh:retrofit2-livedata-adapter:1.1.1"
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.github.leonardoxh
VERSION_NAME=1.1.0
VERSION_NAME=1.1.1

POM_NAME=Retrofit 2 LiveData adapter
POM_DESCRIPTION=A CallAdapter.Factory for Android LiveData
Expand Down

0 comments on commit 1d5288d

Please sign in to comment.