Change version ranges to only support patch version increments

This commit is contained in:
Leonid Logvinov
2018-03-15 17:07:57 +01:00
parent c4b4bb9e8e
commit 32feadee42
24 changed files with 24 additions and 24 deletions

View File

@@ -1,4 +1,4 @@
pragma solidity ^0.4.10;
pragma solidity ~0.4.10;
/// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution.
/// @author Stefan George - <stefan.george@consensys.net>

View File

@@ -16,7 +16,7 @@
*/
pragma solidity ^0.4.10;
pragma solidity ~0.4.10;
import { MultiSigWallet } from "../MultiSigWallet/MultiSigWallet.sol";

View File

@@ -16,7 +16,7 @@
*/
pragma solidity ^0.4.10;
pragma solidity ~0.4.10;
import { MultiSigWalletWithTimeLock } from "../MultiSigWalletWithTimeLock/MultiSigWalletWithTimeLock.sol";

View File

@@ -16,7 +16,7 @@
*/
pragma solidity ^0.4.14;
pragma solidity ~0.4.14;
import { TokenTransferProxy } from "../TokenTransferProxy/TokenTransferProxy.sol";
import { Token_v1 as Token } from "../../../previous/Token/Token_v1.sol";

View File

@@ -16,7 +16,7 @@
*/
pragma solidity ^0.4.11;
pragma solidity ~0.4.11;
import { Ownable_v1 as Ownable } from "../../../previous/Ownable/Ownable_v1.sol";

View File

@@ -16,7 +16,7 @@
*/
pragma solidity ^0.4.11;
pragma solidity ~0.4.11;
import { Token_v1 as Token } from "../../../previous/Token/Token_v1.sol";
import { Ownable_v1 as Ownable } from "../../../previous/Ownable/Ownable_v1.sol";

View File

@@ -1,4 +1,4 @@
pragma solidity ^0.4.18;
pragma solidity ~0.4.18;
import { Mintable } from "../Mintable/Mintable.sol";
import { Ownable } from "../../utils/Ownable/Ownable.sol";

View File

@@ -1,4 +1,4 @@
pragma solidity ^0.4.18;
pragma solidity ~0.4.18;
import { ERC20Token } from "../../tokens/ERC20Token/ERC20Token.sol";

View File

@@ -1,4 +1,4 @@
pragma solidity ^0.4.18;
pragma solidity ~0.4.18;
import { UnlimitedAllowanceToken } from "../../tokens/UnlimitedAllowanceToken/UnlimitedAllowanceToken.sol";
import { SafeMath } from "../../utils/SafeMath/SafeMath.sol";

View File

@@ -1,4 +1,4 @@
pragma solidity ^0.4.18;
pragma solidity ~0.4.18;
import { Token } from "../Token/Token.sol";

View File

@@ -1,4 +1,4 @@
pragma solidity ^0.4.18;
pragma solidity ~0.4.18;
contract Token {

View File

@@ -16,7 +16,7 @@
*/
pragma solidity ^0.4.18;
pragma solidity ~0.4.18;
import { ERC20Token } from "../ERC20Token/ERC20Token.sol";

View File

@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
pragma solidity ^0.4.18;
pragma solidity ~0.4.18;
contract WETH9 {
string public name = "Wrapped Ether";

View File

@@ -16,7 +16,7 @@
*/
pragma solidity ^0.4.11;
pragma solidity ~0.4.11;
import { UnlimitedAllowanceToken_v1 as UnlimitedAllowanceToken } from "../../../previous/UnlimitedAllowanceToken/UnlimitedAllowanceToken_v1.sol";

View File

@@ -1,4 +1,4 @@
pragma solidity ^0.4.19;
pragma solidity ~0.4.19;
import { Exchange } from "../../protocol/Exchange/Exchange.sol";
import { EtherDelta } from "../EtherDelta/EtherDelta.sol";

View File

@@ -1,4 +1,4 @@
pragma solidity ^0.4.19;
pragma solidity ~0.4.19;
contract AccountLevels {
//given a user, returns an account level

View File

@@ -1,4 +1,4 @@
pragma solidity ^0.4.19;
pragma solidity ~0.4.19;
import { SafeMath } from "../../utils/SafeMath/SafeMath.sol";
import { AccountLevels } from "./AccountLevels.sol";

View File

@@ -1,4 +1,4 @@
pragma solidity ^0.4.18;
pragma solidity ~0.4.18;
/*
* Ownable

View File

@@ -1,4 +1,4 @@
pragma solidity ^0.4.18;
pragma solidity ~0.4.18;
contract SafeMath {
function safeMul(uint a, uint b)

View File

@@ -1,4 +1,4 @@
pragma solidity ^0.4.11;
pragma solidity ~0.4.11;
import { Token_v1 as Token } from "../Token/Token_v1.sol";

View File

@@ -1,4 +1,4 @@
pragma solidity ^0.4.11;
pragma solidity ~0.4.11;
/*
* Ownable

View File

@@ -1,4 +1,4 @@
pragma solidity ^0.4.11;
pragma solidity ~0.4.11;
contract SafeMath_v1 {
function safeMul(uint a, uint b)

View File

@@ -1,4 +1,4 @@
pragma solidity ^0.4.11;
pragma solidity ~0.4.11;
contract Token_v1 {

View File

@@ -16,7 +16,7 @@
*/
pragma solidity ^0.4.11;
pragma solidity ~0.4.11;
import { ERC20Token_v1 as ERC20Token } from "../ERC20Token/ERC20Token_v1.sol";