From a09455d2bf776c207597862dbd29bc7f07f01ea5 Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Wed, 12 Mar 2014 17:25:55 +0100 Subject: [PATCH] Mark version 0.5 --- acorn.js | 2 +- index.html | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/acorn.js b/acorn.js index 0f11931752..cf598f860c 100644 --- a/acorn.js +++ b/acorn.js @@ -27,7 +27,7 @@ })(this, function(exports) { "use strict"; - exports.version = "0.4.1"; + exports.version = "0.5.0"; // 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 f189721410..198882659c 100644 --- a/index.html +++ b/index.html @@ -21,7 +21,7 @@ with a error-tolerant parser and an })(this, function(exports) { "use strict"; - exports.version = "0.4.1";

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

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