Skip to content

Commit

Permalink
Version update
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyofrancis committed May 22, 2019
1 parent 79cad63 commit bfc4028
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 1.4.2
- Thread bug fix. Better logging.

Version 1.4.1
- Memory, performance improvements and bug fixes.

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[ ![Download](https://api.bintray.com/packages/tonyofrancis/maven/dispatch/images/download.svg?version=1.4.1) ](https://bintray.com/tonyofrancis/maven/dispatch/1.4.1/link)
[ ![Download](https://api.bintray.com/packages/tonyofrancis/maven/dispatch/images/download.svg?version=1.4.2) ](https://bintray.com/tonyofrancis/maven/dispatch/1.4.2/link)
# DispatchQueue: A simple work scheduler for Java, Kotlin and Android

DispatchQueue is a simple and flexible work scheduler that schedulers work on a background or main thread in the form of a dispatch queue.
Expand Down Expand Up @@ -376,15 +376,15 @@ The above is a simple diagram on how a dispatch queue works. When you create a q

To use the DispatchQueue library in your project, add the following code to your project’s build.gradle file.
```java
implementation "com.tonyodev.dispatch:dispatch:1.4.1"
implementation "com.tonyodev.dispatch:dispatch:1.4.2"
```
For Android also add:
```java
implementation "com.tonyodev.dispatch:dispatch-android:1.4.1"
implementation "com.tonyodev.dispatch:dispatch-android:1.4.2"
```
To use Dispatch with Retrofit, add:
```java
implementation "com.tonyodev.dispatch:dispatch-retrofit2-adapter:1.4.1"
implementation "com.tonyodev.dispatch:dispatch-retrofit2-adapter:1.4.2"
```

Contribute
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

buildscript {
ext.kotlin_version = '1.3.31'
ext.library_version = '1.4.1'
ext.library_version_code = 17
ext.library_version = '1.4.2'
ext.library_version_code = 18
ext.retrofit_version = '2.5.0'
ext.gson_version = '2.8.5'
ext.novoda_bintray_version = '0.9'
Expand Down

0 comments on commit bfc4028

Please sign in to comment.