Skip to content
This repository was archived by the owner on Dec 1, 2023. It is now read-only.

Commit 42ae6cc

Browse files
committed
Merge branch 'release/0.9.1'
2 parents 2f951df + d171d43 commit 42ae6cc

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ $ bower install vue-resource
2222
```
2323

2424
### CDN
25-
Available on [jsdelivr](https://cdn.jsdelivr.net/vue.resource/0.9.0/vue-resource.min.js), [cdnjs](https://cdnjs.com/libraries/vue-resource) or [npmcdn](https://npmcdn.com/[email protected].0).
25+
Available on [jsdelivr](https://cdn.jsdelivr.net/vue.resource/0.9.1/vue-resource.min.js), [cdnjs](https://cdnjs.com/libraries/vue-resource) or [npmcdn](https://npmcdn.com/[email protected].1/dist/vue-resource.min.js).
2626
```html
27-
<script src="https://cdn.jsdelivr.net/vue.resource/0.9.0/vue-resource.min.js"></script>
27+
<script src="https://cdn.jsdelivr.net/vue.resource/0.9.1/vue-resource.min.js"></script>
2828
```
2929

3030
## Documentation

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vue-resource",
33
"main": "dist/vue-resource.js",
44
"description": "A web request service for Vue.js",
5-
"version": "0.9.0",
5+
"version": "0.9.1",
66
"homepage": "https://github.com/vuejs/vue-resource",
77
"license": "MIT",
88
"ignore": [

dist/vue-resource.common.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-resource v0.9.0
2+
* vue-resource v0.9.1
33
* https://github.com/vuejs/vue-resource
44
* Released under the MIT License.
55
*/
@@ -735,7 +735,7 @@ function xdrClient (request) {
735735
handler = function (event) {
736736

737737
var response = request.respondWith(xdr.responseText, {
738-
status: xhr.status,
738+
status: xdr.status,
739739
statusText: xdr.statusText
740740
});
741741

dist/vue-resource.es2015.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-resource v0.9.0
2+
* vue-resource v0.9.1
33
* https://github.com/vuejs/vue-resource
44
* Released under the MIT License.
55
*/
@@ -733,7 +733,7 @@ function xdrClient (request) {
733733
handler = function (event) {
734734

735735
var response = request.respondWith(xdr.responseText, {
736-
status: xhr.status,
736+
status: xdr.status,
737737
statusText: xdr.statusText
738738
});
739739

dist/vue-resource.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-resource v0.9.0
2+
* vue-resource v0.9.1
33
* https://github.com/vuejs/vue-resource
44
* Released under the MIT License.
55
*/
@@ -739,7 +739,7 @@
739739
handler = function (event) {
740740

741741
var response = request.respondWith(xdr.responseText, {
742-
status: xhr.status,
742+
status: xdr.status,
743743
statusText: xdr.statusText
744744
});
745745

dist/vue-resource.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-resource",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "A web request service for Vue.js",
55
"main": "dist/vue-resource.common.js",
66
"jsnext:main": "dist/vue-resource.es2015.js",

src/http/client/xdr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default function (request) {
1111

1212
var response = request.respondWith(
1313
xdr.responseText, {
14-
status: xhr.status,
14+
status: xdr.status,
1515
statusText: xdr.statusText
1616
}
1717
);

0 commit comments

Comments
 (0)