diff --git a/acorn.js b/acorn.js index c386c2271d..0c3cc45d7d 100644 --- a/acorn.js +++ b/acorn.js @@ -16,7 +16,7 @@ (function(exports) { "use strict"; - exports.version = "0.0.1"; + exports.version = "0.0.2"; // The main exported interface (under `self.acorn` when in the // browser) is a `parse` function that takes a code string and diff --git a/index.html b/index.html index 39fa07299e..90b9709a7c 100644 --- a/index.html +++ b/index.html @@ -13,7 +13,7 @@ https://github.com/marijnh/acorn.git
Please use the github bug tracker to report issues.
(function(exports) {
"use strict";
- exports.version = "0.0.1";The main exported interface (under self.acorn when in the
+ exports.version = "0.0.2";
The main exported interface (under self.acorn when in the
browser) is a parse function that takes a code string and
returns an abstract syntax tree as specified by Mozilla parser
API, with the caveat that the SpiderMonkey-specific syntax
diff --git a/package.json b/package.json
index 5f4a90a914..e4f125fe31 100644
--- a/package.json
+++ b/package.json
@@ -3,7 +3,7 @@
"description": "ECMAScript parser",
"homepage": "http://marijnhaverbeke.nl/acorn/",
"main": "acorn.js",
- "version": "0.0.1",
+ "version": "0.0.2",
"engines": {"node": ">=0.4.0"},
"maintainers": [{"name": "Marijn Haverbeke",
"email": "marijnh@gmail.com",