From 9cd98d9ecb93e5a059a88479280238ebd21f0c7e Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Wed, 13 Dec 2017 11:18:06 -0500 Subject: [PATCH 1/3] add NOTES to gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 0c56f1e4..78504505 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ test_app/node_modules/ test_app/chains.json .idea .eslintrc.json +NOTES From daba3b9319016f0f34f809d4099a6cff154f1486 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Wed, 13 Dec 2017 11:38:36 -0500 Subject: [PATCH 2/3] remove extra character in template causing issues with the console --- lib/contracts/code_templates/define-web3-simple.js.ejs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/contracts/code_templates/define-web3-simple.js.ejs b/lib/contracts/code_templates/define-web3-simple.js.ejs index b6177bfa..df7d0df6 100644 --- a/lib/contracts/code_templates/define-web3-simple.js.ejs +++ b/lib/contracts/code_templates/define-web3-simple.js.ejs @@ -1,3 +1,3 @@ __mainContext.web3 = undefined; -web3 = new Web3(new Web3.providers.HttpProvider("<%- url -%>'")); +web3 = new Web3(new Web3.providers.HttpProvider("<%- url -%>")); <%- done %> From 97231caad850c50f33e3c46507286e219158ebb4 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Wed, 13 Dec 2017 11:42:20 -0500 Subject: [PATCH 3/3] update to 2.6.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index bd32be53..a5083d04 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "embark", - "version": "2.6.0", + "version": "2.6.1", "description": "Embark is a framework that allows you to easily develop and deploy DApps", "scripts": { "test": "grunt jshint && mocha test/ --no-timeouts && cd test_app/ && npm install && ../bin/embark test"