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

Commit

Permalink
Merge branch 'release/0.9.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
steffans committed Jun 25, 2016
2 parents 2f951df + d171d43 commit 42ae6cc
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ $ bower install vue-resource
```

### CDN
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).
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).
```html
<script src="https://cdn.jsdelivr.net/vue.resource/0.9.0/vue-resource.min.js"></script>
<script src="https://cdn.jsdelivr.net/vue.resource/0.9.1/vue-resource.min.js"></script>
```

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vue-resource",
"main": "dist/vue-resource.js",
"description": "A web request service for Vue.js",
"version": "0.9.0",
"version": "0.9.1",
"homepage": "https://github.com/vuejs/vue-resource",
"license": "MIT",
"ignore": [
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-resource.common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-resource v0.9.0
* vue-resource v0.9.1
* https://github.com/vuejs/vue-resource
* Released under the MIT License.
*/
Expand Down Expand Up @@ -735,7 +735,7 @@ function xdrClient (request) {
handler = function (event) {

var response = request.respondWith(xdr.responseText, {
status: xhr.status,
status: xdr.status,
statusText: xdr.statusText
});

Expand Down
4 changes: 2 additions & 2 deletions dist/vue-resource.es2015.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-resource v0.9.0
* vue-resource v0.9.1
* https://github.com/vuejs/vue-resource
* Released under the MIT License.
*/
Expand Down Expand Up @@ -733,7 +733,7 @@ function xdrClient (request) {
handler = function (event) {

var response = request.respondWith(xdr.responseText, {
status: xhr.status,
status: xdr.status,
statusText: xdr.statusText
});

Expand Down
4 changes: 2 additions & 2 deletions dist/vue-resource.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-resource v0.9.0
* vue-resource v0.9.1
* https://github.com/vuejs/vue-resource
* Released under the MIT License.
*/
Expand Down Expand Up @@ -739,7 +739,7 @@
handler = function (event) {

var response = request.respondWith(xdr.responseText, {
status: xhr.status,
status: xdr.status,
statusText: xdr.statusText
});

Expand Down
4 changes: 2 additions & 2 deletions dist/vue-resource.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-resource",
"version": "0.9.0",
"version": "0.9.1",
"description": "A web request service for Vue.js",
"main": "dist/vue-resource.common.js",
"jsnext:main": "dist/vue-resource.es2015.js",
Expand Down
2 changes: 1 addition & 1 deletion src/http/client/xdr.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function (request) {

var response = request.respondWith(
xdr.responseText, {
status: xhr.status,
status: xdr.status,
statusText: xdr.statusText
}
);
Expand Down

0 comments on commit 42ae6cc

Please sign in to comment.