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

Commit 525939c

Browse files
committed
v0.9.3
1 parent f493e43 commit 525939c

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
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.2/vue-resource.min.js), [cdnjs](https://cdnjs.com/libraries/vue-resource) or [npmcdn](https://npmcdn.com/[email protected].2/dist/vue-resource.min.js).
25+
Available on [jsdelivr](https://cdn.jsdelivr.net/vue.resource/0.9.3/vue-resource.min.js), [cdnjs](https://cdnjs.com/libraries/vue-resource) or [npmcdn](https://npmcdn.com/[email protected].3/dist/vue-resource.min.js).
2626
```html
27-
<script src="https://cdn.jsdelivr.net/vue.resource/0.9.2/vue-resource.min.js"></script>
27+
<script src="https://cdn.jsdelivr.net/vue.resource/0.9.3/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.2",
5+
"version": "0.9.3",
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.2
2+
* vue-resource v0.9.3
33
* https://github.com/vuejs/vue-resource
44
* Released under the MIT License.
55
*/
@@ -913,7 +913,7 @@ function timeout (request, next) {
913913

914914
if (request.timeout) {
915915
timeout = setTimeout(function () {
916-
request.cancel();
916+
request.abort();
917917
}, request.timeout);
918918
}
919919

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.2
2+
* vue-resource v0.9.3
33
* https://github.com/vuejs/vue-resource
44
* Released under the MIT License.
55
*/
@@ -911,7 +911,7 @@ function timeout (request, next) {
911911

912912
if (request.timeout) {
913913
timeout = setTimeout(function () {
914-
request.cancel();
914+
request.abort();
915915
}, request.timeout);
916916
}
917917

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.2
2+
* vue-resource v0.9.3
33
* https://github.com/vuejs/vue-resource
44
* Released under the MIT License.
55
*/
@@ -917,7 +917,7 @@
917917

918918
if (request.timeout) {
919919
timeout = setTimeout(function () {
920-
request.cancel();
920+
request.abort();
921921
}, request.timeout);
922922
}
923923

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.2",
3+
"version": "0.9.3",
44
"description": "A web request service for Vue.js",
55
"main": "dist/vue-resource.common.js",
66
"jsnext:main": "dist/vue-resource.es2015.js",

0 commit comments

Comments
 (0)