Skip to content
This repository was archived by the owner on Mar 16, 2019. It is now read-only.

Commit 559bbd4

Browse files
committed
bump to 0.7.1
1 parent 7494070 commit 559bbd4

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# react-native-fetch-blob [![release](https://img.shields.io/github/release/wkh237/react-native-fetch-blob.svg?maxAge=86400&style=flat-square)](https://www.npmjs.com/package/react-native-fetch-blob) [![npm](https://img.shields.io/npm/v/react-native-fetch-blob.svg?style=flat-square)](https://www.npmjs.com/package/react-native-fetch-blob) ![](https://img.shields.io/badge/PR-Welcome-brightgreen.svg?style=flat-square) [![npm](https://img.shields.io/npm/l/express.svg?maxAge=2592000&style=flat-square)]()
1+
# react-native-fetch-blob [![release](https://img.shields.io/github/release/wkh237/react-native-fetch-blob.svg?maxAge=86400&style=flat-square)](https://www.npmjs.com/package/react-native-fetch-blob) [![npm](https://img.shields.io/npm/v/react-native-fetch-blob.svg?style=flat-square)](https://www.npmjs.com/package/react-native-fetch-blob) ![](https://img.shields.io/badge/PR-Welcome-brightgreen.svg?style=flat-square) [![npm](https://img.shields.io/npm/l/express.svg?maxAge=2592000&style=flat-square)]()
22

33
A project committed to make file acess and transfer easier and effiecient for React Native developers.
44

@@ -20,7 +20,7 @@ A project committed to make file acess and transfer easier and effiecient for Re
2020
* [API References](https://github.com/wkh237/react-native-fetch-blob/wiki/Fetch-API)
2121
* [Trouble Shooting](https://github.com/wkh237/react-native-fetch-blob/wiki/Trouble-Shooting)
2222
* [Development](#user-content-development)
23-
23+
2424
## About
2525

2626
React Native does not support `Blob` object at this moment, which means if you're going to send/receive binary data via `fetch` API, that might not work as you expect. See [facebook/react-native#854](https://github.com/facebook/react-native/issues/854).
@@ -603,6 +603,7 @@ RNFetchBlob.config({
603603

604604
| Version | |
605605
|---|---|
606+
| 0.7.1 | Fix #57 ios module could not compile on ios version <= 9.3 |
606607
| 0.7.0 | Add support of Android upload progress, and remove AsyncHttpClient dependency from Android native implementation. |
607608
| 0.6.4 | Fix rnpm link script. |
608609
| 0.6.3 | Fix performance issue on IOS, increase max concurrent request limitation from 1. |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fetchblob",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"private": true,
55
"scripts": {
66
"start": "node node_modules/react-native/local-cli/cli.js start",

src/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -597,6 +597,7 @@ RNFetchBlob.config({
597597

598598
| Version | |
599599
|---|---|
600+
| 0.7.1 | Fix #57 ios module could not compile on ios version <= 9.3 |
600601
| 0.7.0 | Add support of Android upload progress, and remove AsyncHttpClient dependency from Android native implementation. |
601602
| 0.6.4 | Fix rnpm link script. |
602603
| 0.6.3 | Fix performance issue on IOS, increase max concurrent request limitation from 1. |

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-fetch-blob",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "A module provides upload, download, and files access API. Supports file stream read/write for process large files.",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)