From fe767e4cd87c2bea0607e9a7c33ab370abfec445 Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Thu, 14 Aug 2014 13:24:24 +0200 Subject: [PATCH] Mark version 0.7.0 --- 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 3d5b6450f6..7e6cc9f078 100644 --- a/acorn.js +++ b/acorn.js @@ -28,7 +28,7 @@ })(this, function(exports) { "use strict"; - exports.version = "0.6.1"; + exports.version = "0.7.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 797684e1ab..f0357cd703 100644 --- a/index.html +++ b/index.html @@ -22,7 +22,7 @@ with a error-tolerant parser and an })(this, function(exports) { "use strict"; - exports.version = "0.6.1";

The main exported interface (under self.acorn when in the + exports.version = "0.7.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 inline XML is not recognized.

  var options, input, inputLen, sourceFile;
diff --git a/package.json b/package.json
index b5d573c4d5..68392f70a9 100644
--- a/package.json
+++ b/package.json
@@ -3,7 +3,7 @@
     "description": "ECMAScript parser",
     "homepage": "http://marijnhaverbeke.nl/acorn/",
     "main": "acorn.js",
-    "version": "0.6.1",
+    "version": "0.7.0",
     "engines": {"node": ">=0.4.0"},
     "maintainers": [{"name": "Marijn Haverbeke",
                      "email": "marijnh@gmail.com",