Skip to content

Commit

Permalink
fixed solidity-coverage, downgraded solidity to 0.5.0 from 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztofwedrowicz committed Jan 25, 2019
1 parent 5cf69b4 commit 8dbdaee
Show file tree
Hide file tree
Showing 15 changed files with 78 additions and 62 deletions.
2 changes: 1 addition & 1 deletion contracts/Migrations.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.5.3;
pragma solidity ^0.5.0;

contract Migrations {
address public owner;
Expand Down
2 changes: 1 addition & 1 deletion contracts/Oracle.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.5.3;
pragma solidity ^0.5.0;

import "./UsingOracleI.sol";
import "./auth/Authorizable.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/OracleI.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.5.3;
pragma solidity ^0.5.0;

interface OracleI {
function request(string calldata _url) external returns(bytes32 id);
Expand Down
2 changes: 1 addition & 1 deletion contracts/UsingOracle.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.5.3;
pragma solidity ^0.5.0;

import "./OracleI.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/UsingOracleI.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.5.3;
pragma solidity ^0.5.0;

interface UsingOracleI {
function __callback(bytes32 _id, string calldata _value, uint _errorCode) external;
Expand Down
2 changes: 1 addition & 1 deletion contracts/auth/Authorizable.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.5.3;
pragma solidity ^0.5.0;

import "openzeppelin-solidity/contracts/ownership/Ownable.sol";
import "openzeppelin-solidity/contracts/access/Roles.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/oraclize/OraclizeAddrResolver.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.5.3;
pragma solidity ^0.5.0;

/*
Copyright (c) 2015-2016 Oraclize SRL
Expand Down
2 changes: 1 addition & 1 deletion contracts/oraclize/OraclizeI.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.5.3;
pragma solidity ^0.5.0;

contract OraclizeI {

Expand Down
2 changes: 1 addition & 1 deletion contracts/oraclize/OraclizeWrapper.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.5.3;
pragma solidity ^0.5.0;

import "./OraclizeI.sol";
import "./UsingOraclizeI.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/oraclize/UsingOraclizeExampleContract.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.5.3;
pragma solidity ^0.5.0;

import "./oraclizeAPI.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/oraclize/UsingOraclizeI.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.5.3;
pragma solidity ^0.5.0;

interface UsingOraclizeI {
function __callback(bytes32 _id, string calldata _value) external;
Expand Down
2 changes: 1 addition & 1 deletion contracts/utils/StringParser.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.5.3;
pragma solidity ^0.5.0;

library StringParser {
function toInt(string memory _x) public pure returns(int) {
Expand Down
2 changes: 1 addition & 1 deletion contracts/utils/coverage/StringParserCoverage.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.5.3;
pragma solidity ^0.5.0;

import "../StringParser.sol";

Expand Down
112 changes: 64 additions & 48 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"eslint-plugin-import": "^2.15.0",
"lodash": "^4.17.11",
"openzeppelin-solidity": "^2.1.2",
"solidity-coverage": "^0.5.11",
"solidity-coverage": "https://github.com:rotcivegaf/solidity-coverage.git#5875f5b7bc74d447f3312c9c0e9fc7814b482477",
"solium": "^1.2.2",
"truffle": "^5.0.2",
"truffle-flattener": "^1.2.10",
Expand Down

0 comments on commit 8dbdaee

Please sign in to comment.