From 06a391113cbf9905e92d97cfe925e1131a77b667 Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Thu, 18 Aug 2016 16:32:48 -0300 Subject: [PATCH] fix Token imports and v0.0.6 --- contracts/Token.sol | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/Token.sol b/contracts/Token.sol index 7a84d3467..7d7758010 100644 --- a/contracts/Token.sol +++ b/contracts/Token.sol @@ -2,7 +2,7 @@ // Flat file implementation of `dappsys/token/base.sol::DSTokenBase` // Everything throws instead of returning false on failure. -import 'ERC20.sol'; +import './ERC20.sol'; contract Token is ERC20 { diff --git a/package.json b/package.json index 8bb271c67..b496d54e9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "zeppelin-solidity", - "version": "0.0.5", + "version": "0.0.6", "description": "Secure Smart Contract library for Solidity", "main": "truffle.js", "devDependencies": {},