Explorar el Código

bump to 0.10.0-beta.1

Ben Hsieh hace 8 años
padre
commit
603c59cc96
Se han modificado 4 ficheros con 6 adiciones y 6 borrados
  1. 1
    1
      .github/PULL_REQUEST_TEMPLATE
  2. 1
    1
      package.json
  3. 2
    2
      src/package.json
  4. 2
    2
      src/react-native-fetch-blob.podspec

+ 1
- 1
.github/PULL_REQUEST_TEMPLATE Ver fichero

@@ -1,5 +1,5 @@
1 1
 Thank you for making a pull request ! Just a gentle reminder :)
2 2
 
3 3
 1. If the PR is offering a feature please make the request to our "Feature Branch" 0.10.0
4
-2. Bug fix request to "Bug Fix Branch" 0.9.6
4
+2. Bug fix request to "Bug Fix Branch" 0.10.0
5 5
 3. Correct README.md can directly to master

+ 1
- 1
package.json Ver fichero

@@ -1,7 +1,7 @@
1 1
 {
2 2
   "name": "react-native-fetch-blob-dev-env",
3 3
   "description" : "RNFB development environment, not dist package",
4
-  "version": "0.9.6",
4
+  "version": "0.10.0-dev",
5 5
   "private": true,
6 6
   "scripts": {
7 7
     "start": "node node_modules/react-native/local-cli/cli.js start",

+ 2
- 2
src/package.json Ver fichero

@@ -1,6 +1,6 @@
1 1
 {
2 2
   "name": "react-native-fetch-blob",
3
-  "version": "0.9.6",
3
+  "version": "0.10.0-beta.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": {
@@ -44,4 +44,4 @@
44 44
     "smartt <github@eriksmartt.com>",
45 45
     ""
46 46
   ]
47
-}
47
+}

+ 2
- 2
src/react-native-fetch-blob.podspec Ver fichero

@@ -1,12 +1,12 @@
1 1
 Pod::Spec.new do |s|
2 2
   s.name             = "react-native-fetch-blob"
3
-  s.version          = "0.9.6"
3
+  s.version          = "0.10.0-beta.1"
4 4
   s.summary          = "A project committed to make file acess and data transfer easier, effiecient for React Native developers."
5 5
   s.requires_arc = true
6 6
   s.license      = 'MIT'
7 7
   s.homepage     = 'n/a'
8 8
   s.authors      = { "wkh237" => "xeiyan@gmail.com" }
9
-  s.source       = { :git => "https://github.com/wkh237/react-native-fetch-blob", :tag => 'v0.9.6'}
9
+  s.source       = { :git => "https://github.com/wkh237/react-native-fetch-blob", :tag => 'v0.10.0-beta.1'}
10 10
   s.source_files = 'ios/**/*.{h,m}'
11 11
   s.platform     = :ios, "7.0"
12 12
   s.dependency 'React/Core'