diff --git a/acorn.js b/acorn.js index 7048e91b5f..211f8e44cb 100644 --- a/acorn.js +++ b/acorn.js @@ -23,7 +23,7 @@ (function(exports) { "use strict"; - exports.version = "0.1.0"; + exports.version = "0.1.01"; // 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 9e25efff0e..5418270a6d 100644 --- a/index.html +++ b/index.html @@ -17,7 +17,7 @@ with a error-tolerant parser and an abstract syntax tree walker, defined in other files.

(function(exports) {
   "use strict";
 
-  exports.version = "0.1.0";

The main exported interface (under self.acorn when in the + exports.version = "0.1.01";

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 41c09018a4..7bc0ef4f47 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "description": "ECMAScript parser", "homepage": "http://marijnhaverbeke.nl/acorn/", "main": "acorn.js", - "version": "0.1.0", + "version": "0.1.01", "engines": {"node": ">=0.4.0"}, "maintainers": [{"name": "Marijn Haverbeke", "email": "marijnh@gmail.com",