From ca0017c86fc8b187004d933d956a293ecbacae6e Mon Sep 17 00:00:00 2001 From: Rick Harrison Date: Wed, 20 Jul 2016 14:43:02 -0700 Subject: [PATCH] Release Version: v1.0.1 --- package.json | 2 +- scripts/release.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f0d01db..a8d1aa4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@meadow/sqs", - "version": "1.0.0", + "version": "1.0.1", "description": "Promise/JSON based client for Amazon SQS with automatic long-polling.", "main": "index.js", "scripts": { diff --git a/scripts/release.js b/scripts/release.js index 9a12e51..4cfe1e9 100644 --- a/scripts/release.js +++ b/scripts/release.js @@ -31,4 +31,4 @@ execSync(`git tag ${nextRef}`); execSync('git push origin master'); execSync(`git push origin ${nextRef}`); -execSync('npm publish', { stdio: [0, 1, 2] }); +execSync('npm publish --access public', { stdio: [0, 1, 2] });