Skip to content

Commit dc19c80

Browse files
committed
bump solidity version 0.6.0 to 0.6.2
1 parent 7c607dc commit dc19c80

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

code/Solidity/Faucet.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: CC-BY-SA-4.0
22

33
// Version of Solidity compiler this program was written for
4-
pragma solidity 0.6.0;
4+
pragma solidity 0.6.2;
55

66
// Our first contract is a faucet!
77
contract Faucet {

code/Solidity/Faucet2.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: CC-BY-SA-4.0
22

33
// Version of Solidity compiler this program was written for
4-
pragma solidity ^0.6.0;
4+
pragma solidity ^0.6.2;
55

66
// Our first contract is a faucet!
77
contract Faucet {

code/Solidity/Faucet3.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: CC-BY-SA-4.0
22

33
// Version of Solidity compiler this program was written for
4-
pragma solidity ^0.6.0;
4+
pragma solidity ^0.6.2;
55

66
// Our first contract is a faucet!
77
contract Faucet {

code/Solidity/Faucet4.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: CC-BY-SA-4.0
22

33
// Version of Solidity compiler this program was written for
4-
pragma solidity ^0.6.0;
4+
pragma solidity ^0.6.2;
55

66
// Our first contract is a faucet!
77
contract Faucet {

code/Solidity/Faucet5.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: CC-BY-SA-4.0
22

33
// Version of Solidity compiler this program was written for
4-
pragma solidity ^0.6.0;
4+
pragma solidity ^0.6.2;
55

66
contract Owned {
77
address payable owner;

code/Solidity/Faucet6.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: CC-BY-SA-4.0
22

33
// Version of Solidity compiler this program was written for
4-
pragma solidity ^0.6.0;
4+
pragma solidity ^0.6.2;
55

66
contract Owned {
77
address payable owner;

code/Solidity/Faucet7.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: CC-BY-SA-4.0
22

33
// Version of Solidity compiler this program was written for
4-
pragma solidity ^0.6.0;
4+
pragma solidity ^0.6.2;
55

66
contract Owned {
77
address payable owner;

code/Solidity/Faucet8.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: CC-BY-SA-4.0
22

33
// Version of Solidity compiler this program was written for
4-
pragma solidity ^0.6.0;
4+
pragma solidity ^0.6.2;
55

66
contract Owned {
77
address payable owner;

0 commit comments

Comments
 (0)