Explorar el Código

bump to 0.5.5

Ben Hsieh hace 8 años
padre
commit
304521563c
Se han modificado 4 ficheros con 8 adiciones y 6 borrados
  1. 3
    2
      README.md
  2. 1
    1
      package.json
  3. 3
    2
      src/README.md
  4. 1
    1
      src/package.json

+ 3
- 2
README.md Ver fichero

1
-# react-native-fetch-blob [![npm version](https://img.shields.io/badge/npm package-0.5.4-brightgreen.svg)](https://badge.fury.io/js/react-native-fetch-blob) ![](https://img.shields.io/badge/PR-Welcome-brightgreen.svg) ![](https://img.shields.io/badge/in progress-0.6.0-yellow.svg)
1
+# react-native-fetch-blob [![npm version](https://img.shields.io/badge/npm package-0.5.5-brightgreen.svg)](https://badge.fury.io/js/react-native-fetch-blob) ![](https://img.shields.io/badge/PR-Welcome-brightgreen.svg) ![](https://img.shields.io/badge/in progress-0.6.0-yellow.svg)
2
 
2
 
3
 A module provides upload, download, and files access API. Supports file stream read/write for process large files.
3
 A module provides upload, download, and files access API. Supports file stream read/write for process large files.
4
 
4
 
847
 
847
 
848
 | Version | |
848
 | Version | |
849
 |---|---|
849
 |---|---|
850
-| 0.5.4 | Fix #30 #31 build build error, and improve memory efficiency. | 
850
+| 0.5.5 | Remove work in progress code added in 0.5.2 which may cause memory leaks. |
851
+| 0.5.4 | Fix #30 #31 build build error, and improve memory efficiency. |
851
 | 0.5.3 | Add API for access untrusted SSL server |
852
 | 0.5.3 | Add API for access untrusted SSL server |
852
 | 0.5.2 | Fix improper url params bug [#26](https://github.com/wkh237/react-native-fetch-blob/issues/26) and change IOS HTTP implementation from NSURLConnection to NSURLSession |
853
 | 0.5.2 | Fix improper url params bug [#26](https://github.com/wkh237/react-native-fetch-blob/issues/26) and change IOS HTTP implementation from NSURLConnection to NSURLSession |
853
 | 0.5.0 | Upload/download with direct access to file storage, and also added file access APIs |
854
 | 0.5.0 | Upload/download with direct access to file storage, and also added file access APIs |

+ 1
- 1
package.json Ver fichero

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

+ 3
- 2
src/README.md Ver fichero

1
-# react-native-fetch-blob [![npm version](https://img.shields.io/badge/npm package-0.5.4-brightgreen.svg)](https://badge.fury.io/js/react-native-fetch-blob) ![](https://img.shields.io/badge/PR-Welcome-brightgreen.svg) ![](https://img.shields.io/badge/in progress-0.6.0-yellow.svg)
1
+# react-native-fetch-blob [![npm version](https://img.shields.io/badge/npm package-0.5.5-brightgreen.svg)](https://badge.fury.io/js/react-native-fetch-blob) ![](https://img.shields.io/badge/PR-Welcome-brightgreen.svg) ![](https://img.shields.io/badge/in progress-0.6.0-yellow.svg)
2
 
2
 
3
 A module provides upload, download, and files access API. Supports file stream read/write for process large files.
3
 A module provides upload, download, and files access API. Supports file stream read/write for process large files.
4
 
4
 
26
  * [File access](#user-content-file-access)
26
  * [File access](#user-content-file-access)
27
  * [File stream](#user-content-file-stream)
27
  * [File stream](#user-content-file-stream)
28
  * [Manage cached files](#user-content-manage-cached-files)
28
  * [Manage cached files](#user-content-manage-cached-files)
29
- * [Self-Signed SSL Server](#user-content-selfsigned-ssl-server)
29
+ * [Self-Signed SSL Server](#user-content-self-signed-ssl-server)
30
 * [API](#user-content-api)
30
 * [API](#user-content-api)
31
  * [config](#user-content-configoptionsrnfetchblobconfigfetch)
31
  * [config](#user-content-configoptionsrnfetchblobconfigfetch)
32
  * [fetch](#user-content-fetchmethod-url-headers-bodypromisefetchblobresponse)
32
  * [fetch](#user-content-fetchmethod-url-headers-bodypromisefetchblobresponse)
847
 
847
 
848
 | Version | |
848
 | Version | |
849
 |---|---|
849
 |---|---|
850
+| 0.5.5 | Remove work in progress code added in 0.5.2 which may cause memory leaks. |
850
 | 0.5.4 | Fix #30 #31 build build error, and improve memory efficiency. |
851
 | 0.5.4 | Fix #30 #31 build build error, and improve memory efficiency. |
851
 | 0.5.3 | Add API for access untrusted SSL server |
852
 | 0.5.3 | Add API for access untrusted SSL server |
852
 | 0.5.2 | Fix improper url params bug [#26](https://github.com/wkh237/react-native-fetch-blob/issues/26) and change IOS HTTP implementation from NSURLConnection to NSURLSession |
853
 | 0.5.2 | Fix improper url params bug [#26](https://github.com/wkh237/react-native-fetch-blob/issues/26) and change IOS HTTP implementation from NSURLConnection to NSURLSession |

+ 1
- 1
src/package.json Ver fichero

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