diff --git a/dist/es6.compiler.js b/dist/es6.compiler.js index 77273a0..0d6bea4 100644 --- a/dist/es6.compiler.js +++ b/dist/es6.compiler.js @@ -1,6 +1,6 @@ /** * Compiler for riot custom tags - * @version WIP + * @version v2.5.3 */ import { brackets } from 'riot-tmpl' @@ -717,7 +717,7 @@ function compile (src, opts, url) { return src } -var version = 'WIP' +var version = 'v2.5.3' export default { compile, diff --git a/dist/riot.compiler.js b/dist/riot.compiler.js index e8fbe7d..4a5cc14 100644 --- a/dist/riot.compiler.js +++ b/dist/riot.compiler.js @@ -129,7 +129,7 @@ riot.parsers = parsers /** * Compiler for riot custom tags - * @version WIP + * @version v2.5.3 */ var compile = (function () { @@ -720,7 +720,7 @@ var compile = (function () { html: compileHTML, css: compileCSS, js: compileJS, - version: 'WIP' + version: 'v2.5.3' } return compile diff --git a/lib/compiler.js b/lib/compiler.js index fcda71b..a7cbce3 100644 --- a/lib/compiler.js +++ b/lib/compiler.js @@ -1,8 +1,8 @@ /** - * The riot-compiler WIP + * The riot-compiler v2.5.3 * * @module compiler - * @version WIP + * @version v2.5.3 * @license MIT * @copyright Muut Inc. + contributors */ @@ -1035,5 +1035,5 @@ module.exports = { css: compileCSS, js: compileJS, parsers: parsers, - version: 'WIP' + version: 'v2.5.3' } diff --git a/package.json b/package.json index 2bbfb1f..e98ba26 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "riot-compiler", - "version": "2.5.2", + "version": "2.5.3", "description": "Compiler for riot .tag files", "main": "lib/compiler.js", "jsnext:main": "dist/es6.compiler.js",