Skip to content

Commit

Permalink
[release] 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Oct 29, 2015
1 parent 14a1fb4 commit 450424b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions dist/vue.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Vue.js v1.0.2
* Vue.js v1.0.3
* (c) 2015 Evan You
* Released under the MIT License.
*/
Expand Down Expand Up @@ -146,7 +146,7 @@ return /******/ (function(modules) { // webpackBootstrap
extend(p, __webpack_require__(65))
extend(p, __webpack_require__(66))

Vue.version = '1.0.2'
Vue.version = '1.0.3'
module.exports = _.Vue = Vue

/* istanbul ignore if */
Expand Down Expand Up @@ -1470,7 +1470,7 @@ return /******/ (function(modules) { // webpackBootstrap
function processFilterArg (arg) {
if (reservedArgRE.test(arg)) {
return {
value: arg,
value: _.toNumber(arg),
dynamic: false
}
} else {
Expand Down
8 changes: 4 additions & 4 deletions dist/vue.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",
"version": "1.0.2",
"version": "1.0.3",
"author": "Evan You <yyx990803@gmail.com>",
"license": "MIT",
"description": "Simple, Fast & Composable MVVM for building interative interfaces",
Expand Down
2 changes: 1 addition & 1 deletion src/vue.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ extend(p, require('./api/dom'))
extend(p, require('./api/events'))
extend(p, require('./api/lifecycle'))

Vue.version = '1.0.2'
Vue.version = '1.0.3'
module.exports = _.Vue = Vue

/* istanbul ignore if */
Expand Down

0 comments on commit 450424b

Please sign in to comment.