Browse Source

bump to 0.7.1

Ben Hsieh 7 years ago
parent
commit
559bbd406e
4 changed files with 6 additions and 4 deletions
  1. 3
    2
      README.md
  2. 1
    1
      package.json
  3. 1
    0
      src/README.md
  4. 1
    1
      src/package.json

+ 3
- 2
README.md View File

@@ -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)]()
2 2
 
3 3
 A project committed to make file acess and transfer easier and effiecient for React Native developers.
4 4
 
@@ -20,7 +20,7 @@ A project committed to make file acess and transfer easier and effiecient for Re
20 20
 * [API References](https://github.com/wkh237/react-native-fetch-blob/wiki/Fetch-API)
21 21
 * [Trouble Shooting](https://github.com/wkh237/react-native-fetch-blob/wiki/Trouble-Shooting)
22 22
 * [Development](#user-content-development)
23
- 
23
+
24 24
 ## About
25 25
 
26 26
 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({
603 603
 
604 604
 | Version | |
605 605
 |---|---|
606
+| 0.7.1 | Fix #57 ios module could not compile on ios version <= 9.3 |
606 607
 | 0.7.0 | Add support of Android upload progress, and remove AsyncHttpClient dependency from Android native implementation. |
607 608
 | 0.6.4 | Fix rnpm link script. |
608 609
 | 0.6.3 | Fix performance issue on IOS, increase max concurrent request limitation from 1. |

+ 1
- 1
package.json View File

@@ -1,6 +1,6 @@
1 1
 {
2 2
   "name": "fetchblob",
3
-  "version": "0.7.0",
3
+  "version": "0.7.1",
4 4
   "private": true,
5 5
   "scripts": {
6 6
     "start": "node node_modules/react-native/local-cli/cli.js start",

+ 1
- 0
src/README.md View File

@@ -597,6 +597,7 @@ RNFetchBlob.config({
597 597
 
598 598
 | Version | |
599 599
 |---|---|
600
+| 0.7.1 | Fix #57 ios module could not compile on ios version <= 9.3 |
600 601
 | 0.7.0 | Add support of Android upload progress, and remove AsyncHttpClient dependency from Android native implementation. |
601 602
 | 0.6.4 | Fix rnpm link script. |
602 603
 | 0.6.3 | Fix performance issue on IOS, increase max concurrent request limitation from 1. |

+ 1
- 1
src/package.json View File

@@ -1,6 +1,6 @@
1 1
 {
2 2
   "name": "react-native-fetch-blob",
3
-  "version": "0.7.0",
3
+  "version": "0.7.1",
4 4
   "description": "A module provides upload, download, and files access API. Supports file stream read/write for process large files.",
5 5
   "main": "index.js",
6 6
   "scripts": {