Skip to content

Commit 0585eec

Browse files
committed
version update
1 parent 128caba commit 0585eec

File tree

3 files changed

+22
-15
lines changed

3 files changed

+22
-15
lines changed

CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Version 2.2.0-RC14
2+
- Added new EnqueueAction (UPDATE_ACCORDINGLY) which is now the default EnqueueAction. (NEW)
3+
- Bug fixes to Fetch and RxFetch enqueue methods.(BEHAVIOR CHANGE)
4+
- Bug fixes to Fetch and RXFetch updateRequest methods. (BEHAVIOR CHANGE)
5+
- Added new boolean param called updatedListeners for Fetch and RxFetch updateRequest methods. (BREAKING CHANGE)
6+
- Improvements and bug fixes to download processing backoff strategy.
7+
18
Version 2.2.0-RC13
29
- Added new backoff logic for the queue processor
310

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-RC13) ](https://bintray.com/tonyofrancis/maven/fetch2/2.2.0-RC13/link)
3+
[ ![Download](https://api.bintray.com/packages/tonyofrancis/maven/fetch2/images/download.svg?version=2.2.0-RC14) ](https://bintray.com/tonyofrancis/maven/fetch2/2.2.0-RC14/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-RC13"
51+
implementation "com.tonyodev.fetch2:fetch2:2.2.0-RC14"
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-RC13"
217+
implementation "com.tonyodev.fetch2okhttp:fetch2okhttp:2.2.0-RC14"
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-RC13"
238+
implementation "com.tonyodev.fetch2rx:fetch2rx:2.2.0-RC14"
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-RC13"
274+
implementation "com.tonyodev.fetch2fileserver:fetch2fileserver:2.2.0-RC14"
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-RC13"
383+
implementation "com.tonyodev.fetchmigrator:fetchmigrator:2.2.0-RC14"
384384
```
385385

386386
Then run the Migrator.

versions.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
ext {
2-
kotlin_version = '1.2.70'
2+
kotlin_version = '1.2.71'
33
okhttp_version = '3.11.0'
4-
android_support_version = '27.1.1'
5-
constraint_layout_version = "1.1.2"
4+
android_support_version = '28.0.0'
5+
constraint_layout_version = "1.1.3"
66
room_version = '1.1.1'
77
junit_version = '4.12'
88
espresso_version = '3.0.1'
99
test_runner_version = '1.0.1'
1010
library_min_version = '14'
11-
library_compile_version = 27
12-
library_target_version = 27
13-
library_build_tools_version = "27.0.3"
11+
library_compile_version = 28
12+
library_target_version = 28
13+
library_build_tools_version = "28.0.3"
1414
gradle_tools_version = "3.1.4"
1515
rxJava2_version = "2.2.2"
1616
rxAndroid2_version = "2.1.0"
1717
timber_version = "4.7.1"
18-
novoda_bintray_version = "0.8.0"
19-
library_version = "2.2.0-RC13"
20-
library_version_code = 51
18+
novoda_bintray_version = "0.8.1"
19+
library_version = "2.2.0-RC14"
20+
library_version_code = 52
2121
}

0 commit comments

Comments
 (0)