Skip to content

Commit 450424b

Browse files
committed
[release] 1.0.3
1 parent 14a1fb4 commit 450424b

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

dist/vue.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Vue.js v1.0.2
2+
* Vue.js v1.0.3
33
* (c) 2015 Evan You
44
* Released under the MIT License.
55
*/
@@ -146,7 +146,7 @@ return /******/ (function(modules) { // webpackBootstrap
146146
extend(p, __webpack_require__(65))
147147
extend(p, __webpack_require__(66))
148148

149-
Vue.version = '1.0.2'
149+
Vue.version = '1.0.3'
150150
module.exports = _.Vue = Vue
151151

152152
/* istanbul ignore if */
@@ -1470,7 +1470,7 @@ return /******/ (function(modules) { // webpackBootstrap
14701470
function processFilterArg (arg) {
14711471
if (reservedArgRE.test(arg)) {
14721472
return {
1473-
value: arg,
1473+
value: _.toNumber(arg),
14741474
dynamic: false
14751475
}
14761476
} else {

dist/vue.min.js

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"author": "Evan You <[email protected]>",
55
"license": "MIT",
66
"description": "Simple, Fast & Composable MVVM for building interative interfaces",

src/vue.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ extend(p, require('./api/dom'))
8585
extend(p, require('./api/events'))
8686
extend(p, require('./api/lifecycle'))
8787

88-
Vue.version = '1.0.2'
88+
Vue.version = '1.0.3'
8989
module.exports = _.Vue = Vue
9090

9191
/* istanbul ignore if */

0 commit comments

Comments
 (0)