Bladeren bron

bump to 0.7.3

Ben Hsieh 7 jaren geleden
bovenliggende
commit
1df66d6f5f
4 gewijzigde bestanden met toevoegingen van 6 en 4 verwijderingen
  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 Bestand weergeven

@@ -23,9 +23,9 @@ A project committed to make file acess and transfer easier and effiecient for Re
23 23
 
24 24
 ## About
25 25
 
26
-This project was initially for solving the issue [facebook/react-native#854](https://github.com/facebook/react-native/issues/854), because React Native does not support `Blob` object and it will cause some problem when sending and receiving binary data. There's aleady [a PR ](https://github.com/facebook/react-native/pull/8324) merged into RN master branch which will probably solving the issue in the near future. 
26
+This project was initially for solving the issue [facebook/react-native#854](https://github.com/facebook/react-native/issues/854), because React Native does not support `Blob` object and it will cause some problem when sending and receiving binary data. There's aleady [a PR ](https://github.com/facebook/react-native/pull/8324) merged into RN master branch which will probably solving the issue in the near future.
27 27
 
28
-Now, this project is committed to make file acess and transfer more easier and more effiecient for React Native developers. We've implemented lot of file access function which plays well with our network module. For example, it can upload and download data directly into/from file system, which is much more performant than converting data to BASE64 string and sending them through React JS Bridge, and file stream support so that you can read large file without causing OOM error. 
28
+Now, this project is committed to make file acess and transfer more easier and more effiecient for React Native developers. We've implemented lot of file access function which plays well with our network module. For example, it can upload and download data directly into/from file system, which is much more performant than converting data to BASE64 string and sending them through React JS Bridge, and file stream support so that you can read large file without causing OOM error.
29 29
 
30 30
 ## Backward Compatible
31 31
 
@@ -614,6 +614,7 @@ RNFetchBlob.config({
614 614
 
615 615
 | Version | |
616 616
 |---|---|
617
+| 0.7.3 | Fix OkHttp dependency issue in version < 0.29 |
617 618
 | 0.7.2 | Fix cancel request bug |
618 619
 | 0.7.1 | Fix #57 ios module could not compile on ios version <= 9.3 |
619 620
 | 0.7.0 | Add support of Android upload progress, and remove AsyncHttpClient dependency from Android native implementation. |

+ 1
- 1
package.json Bestand weergeven

@@ -1,6 +1,6 @@
1 1
 {
2 2
   "name": "fetchblob",
3
-  "version": "0.7.2",
3
+  "version": "0.7.3",
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 Bestand weergeven

@@ -618,6 +618,7 @@ RNFetchBlob.config({
618 618
 
619 619
 | Version | |
620 620
 |---|---|
621
+| 0.7.3 | Fix OkHttp dependency issue in version < 0.29 |
621 622
 | 0.7.2 | Fix cancel request bug |
622 623
 | 0.7.1 | Fix #57 ios module could not compile on ios version <= 9.3 |
623 624
 | 0.7.0 | Add support of Android upload progress, and remove AsyncHttpClient dependency from Android native implementation. |

+ 1
- 1
src/package.json Bestand weergeven

@@ -1,6 +1,6 @@
1 1
 {
2 2
   "name": "react-native-fetch-blob",
3
-  "version": "0.7.2",
3
+  "version": "0.7.3",
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": {