Skip to content

Commit

Permalink
Merge pull request #69 from oraclize/pr-pragma-update
Browse files Browse the repository at this point in the history
updates pragma to error on solc 0.5
  • Loading branch information
gskapka authored Dec 3, 2018
2 parents 74ac5ad + 8cc6b0e commit 19859a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib-experimental/inlineDynamicHelper_lib.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.4.6;
pragma solidity ^0.4.6 < 0.5;

/*
Helper for declaring inline dynamic string arrays
Expand Down
2 changes: 1 addition & 1 deletion oraclizeAPI_0.4.25.sol
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ THE SOFTWARE.

// This api is currently targeted at 0.4.22 to 0.4.25 (stable builds), please import oraclizeAPI_pre0.4.sol or oraclizeAPI_0.4 where necessary

pragma solidity >=0.4.22;// Incompatible compiler version... please select one stated within pragma solidity or use different oraclizeAPI version
pragma solidity >= 0.4.22 < 0.5;// Incompatible compiler version... please select one stated within pragma solidity or use different oraclizeAPI version

contract OraclizeI {
address public cbAddress;
Expand Down
2 changes: 1 addition & 1 deletion oraclizeAPI_0.4.sol
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/

pragma solidity >=0.4.1;// Incompatible compiler version... please select one stated within pragma solidity or use different oraclizeAPI version
pragma solidity >= 0.4.1 < 0.5;// Incompatible compiler version... please select one stated within pragma solidity or use different oraclizeAPI version

contract OraclizeI {
address public cbAddress;
Expand Down

0 comments on commit 19859a6

Please sign in to comment.