Skip to content

Commit 53bee0d

Browse files
committed
version update
1 parent 96a6a66 commit 53bee0d

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Version 2.2.0-RC13
2+
- Added new backoff logic for the queue processor
3+
14
Version 2.2.0-RC12
25
- Added new method enableFileExistChecks(enabled: Boolean) on FetchConfiguration class
36
- Small fixes to ParallelDownloader

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
[![Build Status](https://travis-ci.org/tonyofrancis/Fetch.svg?branch=v2)](https://travis-ci.org/tonyofrancis/Fetch)
3-
[ ![Download](https://api.bintray.com/packages/tonyofrancis/maven/fetch2/images/download.svg?version=2.2.0-RC12) ](https://bintray.com/tonyofrancis/maven/fetch2/2.2.0-RC12/link)
3+
[ ![Download](https://api.bintray.com/packages/tonyofrancis/maven/fetch2/images/download.svg?version=2.2.0-RC13 ) ](https://bintray.com/tonyofrancis/maven/fetch2/2.2.0-RC13 /link)
44
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-Android%20Networking-blue.svg?style=flat)](https://android-arsenal.com/details/1/5196)
55
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/tonyofrancis/Fetch/blob/master/LICENSE)
66

@@ -48,7 +48,7 @@ How to use Fetch
4848
Using Fetch is easy! Just add the Gradle dependency to your application's build.gradle file.
4949

5050
```java
51-
implementation "com.tonyodev.fetch2:fetch2:2.2.0-RC12"
51+
implementation "com.tonyodev.fetch2:fetch2:2.2.0-RC13 "
5252
```
5353

5454
Next, get an instance of Fetch and request a download.
@@ -214,7 +214,7 @@ to use the OkHttp Downloader instead. You can create your own custom downloaders
214214
if necessary. See the Java docs for details.
215215

216216
```java
217-
implementation "com.tonyodev.fetch2okhttp:fetch2okhttp:2.2.0-RC12"
217+
implementation "com.tonyodev.fetch2okhttp:fetch2okhttp:2.2.0-RC13 "
218218
```
219219
Set the OkHttp Downloader for Fetch to use.
220220
```java
@@ -235,7 +235,7 @@ If you would like to take advantage of RxJava2 features when using Fetch,
235235
add the following gradle dependency to your application's build.gradle file.
236236

237237
```java
238-
implementation "com.tonyodev.fetch2rx:fetch2rx:2.2.0-RC12"
238+
implementation "com.tonyodev.fetch2rx:fetch2rx:2.2.0-RC13 "
239239
```
240240

241241
RxFetch makes it super easy to enqueue download requests and query downloads using rxJava2 functional methods.
@@ -271,7 +271,7 @@ added in the coming days.
271271

272272
Start using FetchFileServer by adding the gradle dependency to your application's build.gradle file.
273273
```java
274-
implementation "com.tonyodev.fetch2fileserver:fetch2fileserver:2.2.0-RC12"
274+
implementation "com.tonyodev.fetch2fileserver:fetch2fileserver:2.2.0-RC13 "
275275
```
276276

277277
Start a FetchFileServer instance and add resource files that it can server to connected clients.
@@ -380,7 +380,7 @@ Fetch1 Migration
380380

381381
Migrate downloads from Fetch1 to Fetch2 using the migration assistant. Add the following gradle dependency to your application's build.gradle file.
382382
```java
383-
implementation "com.tonyodev.fetchmigrator:fetchmigrator:2.2.0-RC12"
383+
implementation "com.tonyodev.fetchmigrator:fetchmigrator:2.2.0-RC13 "
384384
```
385385

386386
Then run the Migrator.

versions.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ext {
2-
kotlin_version = '1.2.60'
2+
kotlin_version = '1.2.70'
33
okhttp_version = '3.11.0'
44
android_support_version = '27.1.1'
55
constraint_layout_version = "1.1.2"
@@ -12,10 +12,10 @@ ext {
1212
library_target_version = 27
1313
library_build_tools_version = "27.0.3"
1414
gradle_tools_version = "3.1.4"
15-
rxJava2_version = "2.2.0"
15+
rxJava2_version = "2.2.2"
1616
rxAndroid2_version = "2.1.0"
1717
timber_version = "4.7.1"
1818
novoda_bintray_version = "0.8.0"
19-
library_version = "2.2.0-RC12"
20-
library_version_code = 50
19+
library_version = "2.2.0-RC13"
20+
library_version_code = 51
2121
}

0 commit comments

Comments
 (0)