diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-09-26 03:04:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-26 03:04:13 +0800 |
commit | 56eb9dd47fb413f243f89f5010badeccba0fbce9 (patch) | |
tree | 8406ab12c52b9de8669713856198faed10303ec4 /docs/common-patterns.rst | |
parent | fc6eee02806ad007992c93cd90f7ce7bdd28556c (diff) | |
parent | e3e9ce53d7c8d5c1228ad7165660c8cb014b0f36 (diff) | |
download | dexon-solidity-56eb9dd47fb413f243f89f5010badeccba0fbce9.tar dexon-solidity-56eb9dd47fb413f243f89f5010badeccba0fbce9.tar.gz dexon-solidity-56eb9dd47fb413f243f89f5010badeccba0fbce9.tar.bz2 dexon-solidity-56eb9dd47fb413f243f89f5010badeccba0fbce9.tar.lz dexon-solidity-56eb9dd47fb413f243f89f5010badeccba0fbce9.tar.xz dexon-solidity-56eb9dd47fb413f243f89f5010badeccba0fbce9.tar.zst dexon-solidity-56eb9dd47fb413f243f89f5010badeccba0fbce9.zip |
Merge pull request #4193 from ethereum/050-version
Set version to 0.5.0-develop
Diffstat (limited to 'docs/common-patterns.rst')
-rw-r--r-- | docs/common-patterns.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/common-patterns.rst b/docs/common-patterns.rst index d26e4377..56536dcc 100644 --- a/docs/common-patterns.rst +++ b/docs/common-patterns.rst @@ -28,7 +28,7 @@ become the new richest. :: - pragma solidity >0.4.24; + pragma solidity >0.4.99 <0.6.0; contract WithdrawalContract { address public richest; @@ -65,7 +65,7 @@ This is as opposed to the more intuitive sending pattern: :: - pragma solidity >0.4.24; + pragma solidity >0.4.99 <0.6.0; contract SendContract { address payable public richest; @@ -130,7 +130,7 @@ restrictions highly readable. :: - pragma solidity ^0.4.22; + pragma solidity >=0.4.22 <0.6.0; contract AccessRestriction { // These will be assigned at the construction @@ -282,7 +282,7 @@ function finishes. :: - pragma solidity ^0.4.22; + pragma solidity >=0.4.22 <0.6.0; contract StateMachine { enum Stages { |