Skip to content

Commit

Permalink
updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyofrancis committed Jun 7, 2019
1 parent 82bd1d6 commit 2d94e2d
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.7
- Fixed issue where a cancelled queue would throw exceptions

Version 1.4.6
- Added new zip method that takes in a list of dispatchQueues.
- Added new async and post methods on DispatchQueue interface for direct executions.
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.6) ](https://bintray.com/tonyofrancis/maven/dispatch/1.4.6/link)
[ ![Download](https://api.bintray.com/packages/tonyofrancis/maven/dispatch/images/download.svg?version=1.4.7) ](https://bintray.com/tonyofrancis/maven/dispatch/1.4.7/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 @@ -378,15 +378,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.6"
implementation "com.tonyodev.dispatch:dispatch:1.4.7"
```
For Android also add:
```java
implementation "com.tonyodev.dispatch:dispatch-android:1.4.6"
implementation "com.tonyodev.dispatch:dispatch-android:1.4.7"
```
To use Dispatch with Retrofit, add:
```java
implementation "com.tonyodev.dispatch:dispatch-retrofit2-adapter:1.4.6"
implementation "com.tonyodev.dispatch:dispatch-retrofit2-adapter:1.4.7"
```

Android users also have to initialize the AndroidDispatchQueues on application launch.
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.6'
ext.library_version_code = 22
ext.library_version = '1.4.7'
ext.library_version_code = 23
ext.retrofit_version = '2.5.0'
ext.gson_version = '2.8.5'
ext.novoda_bintray_version = '0.9'
Expand Down

0 comments on commit 2d94e2d

Please sign in to comment.