From bfc40289b0382ad0a88d60f96c7f0f152a9f1216 Mon Sep 17 00:00:00 2001 From: Tonyo Francis Date: Wed, 22 May 2019 10:05:21 -0400 Subject: [PATCH] Version update --- CHANGELOG | 3 +++ README.md | 8 ++++---- build.gradle | 4 ++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index e5c963f..476d4bf 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +Version 1.4.2 +- Thread bug fix. Better logging. + Version 1.4.1 - Memory, performance improvements and bug fixes. diff --git a/README.md b/README.md index 8b74dac..20a8805 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 diff --git a/build.gradle b/build.gradle index fc74e41..8d515ac 100644 --- a/build.gradle +++ b/build.gradle @@ -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'