Skip to content

Commit ae1f7e2

Browse files
committed
Updated readme and change log
1 parent f392414 commit ae1f7e2

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Version 2.0.0-RC2
2+
- Added new inner class HttpUrlConnectionPreferences to HttpUrlConnectionDownloader. See java docs.
3+
- travis config update.
4+
- remove circleci config file.
5+
- updated unit tests.
6+
- Change source and target comparability from version 1_8 to 1_7 for better project comparability.
7+
18
Version 2.0.0-RC1
29
*Fetch has been completely rebuilt in version 2 and is not compatible with Fetch version 1.
310

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ How to use Fetch
4141
Using Fetch is easy! Just add the Gradle dependency to your application's build.gradle file.
4242

4343
```java
44-
implementation "com.tonyodev.fetch2:fetch2:2.0.0-RC1"
44+
implementation "com.tonyodev.fetch2:fetch2:2.0.0-RC2"
4545
```
4646

4747
Next, get an instance of Fetch using the builder, and request a download.
@@ -232,7 +232,7 @@ to use the OkHttp Downloader instead. You can create your own custom downloaders
232232
if necessary. See the Java docs for details.
233233
234234
```java
235-
implementation "com.tonyodev.fetch2downloaders:fetch2downloaders:2.0.0-RC1"
235+
implementation "com.tonyodev.fetch2downloaders:fetch2downloaders:2.0.0-RC2"
236236
```
237237
Set the OkHttp Downloader for Fetch to use.
238238
```java
@@ -253,7 +253,7 @@ If you would like to take advantage of RxJava2 features when using Fetch,
253253
add the following gradle dependency to your application's build.gradle file.
254254

255255
```java
256-
implementation "com.tonyodev.fetch2rx:fetch2rx:2.0.0-RC1"
256+
implementation "com.tonyodev.fetch2rx:fetch2rx:2.0.0-RC2"
257257
```
258258

259259
RxFetch makes it super easy to enqueue download requests and query downloads using rxJava2 functional methods.
@@ -285,7 +285,7 @@ Fetch1 Migration
285285

286286
Migrate downloads from Fetch1 to Fetch2 using the migration assistant. Add the following gradle dependency to your application's build.gradle file.
287287
```java
288-
implementation "com.tonyodev.fetchmigrator:fetchmigrator:2.0.0-RC1"
288+
implementation "com.tonyodev.fetchmigrator:fetchmigrator:2.0.0-RC2"
289289
```
290290
291291
Then run the Migrator.

0 commit comments

Comments
 (0)