From 01a89cfec14fa4875b98c3e829e5a76a2a1208f7 Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Wed, 1 Oct 2014 23:21:25 +0200 Subject: [PATCH] Mark release 0.9.0 --- AUTHORS | 1 + acorn.js | 2 +- bin/update_authors.sh | 2 +- package.json | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/AUTHORS b/AUTHORS index 8bb9fd76a0..a9e6016d75 100644 --- a/AUTHORS +++ b/AUTHORS @@ -25,4 +25,5 @@ Oskar Schöldström Paul Harper Peter Rust PlNG +r-e-d zsjforcn diff --git a/acorn.js b/acorn.js index 24b7ff5bef..6360d112f0 100644 --- a/acorn.js +++ b/acorn.js @@ -28,7 +28,7 @@ })(this, function(exports) { "use strict"; - exports.version = "0.8.1"; + exports.version = "0.9.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/bin/update_authors.sh b/bin/update_authors.sh index 466c8db586..a517bc0999 100755 --- a/bin/update_authors.sh +++ b/bin/update_authors.sh @@ -1,6 +1,6 @@ # Combine existing list of authors with everyone known in git, sort, add header. tail --lines=+3 AUTHORS > AUTHORS.tmp git log --format='%aN' | grep -v abraidwood >> AUTHORS.tmp -echo -e "List of Acorn contributors. Updated before every release.\n" > AUTHORS +echo "List of Acorn contributors. Updated before every release.\n" > AUTHORS sort -u AUTHORS.tmp >> AUTHORS rm -f AUTHORS.tmp diff --git a/package.json b/package.json index 7b01a78540..572f3c9fd5 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "description": "ECMAScript parser", "homepage": "http://marijnhaverbeke.nl/acorn/", "main": "acorn.js", - "version": "0.8.1", + "version": "0.9.0", "engines": {"node": ">=0.4.0"}, "maintainers": [{"name": "Marijn Haverbeke", "email": "marijnh@gmail.com",