Skip to content

Commit adaf99a

Browse files
committed
update dependencies and solidity pragmas
1 parent 5496aa7 commit adaf99a

File tree

6 files changed

+935
-671
lines changed

6 files changed

+935
-671
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,18 @@
99
[coveralls-url]: https://coveralls.io/github/parity-contracts/auto-updater?branch=master
1010

1111
Operations contracts for parity's auto-updater.
12+
13+
## Getting started
14+
15+
This project uses the [Truffle](http://truffleframework.com/) framework. To install the required
16+
dependencies run:
17+
18+
```
19+
yarn install
20+
```
21+
22+
To run the test suite:
23+
24+
```
25+
yarn test
26+
```

contracts/Operations.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// See the License for the specific language governing permissions and
1515
// limitations under the License.
1616

17-
pragma solidity ^0.4.21;
17+
pragma solidity ^0.4.22;
1818

1919

2020
contract Operations {

contracts/OperationsProxy.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// See the License for the specific language governing permissions and
1515
// limitations under the License.
1616

17-
pragma solidity ^0.4.21;
17+
pragma solidity ^0.4.22;
1818

1919
import "./Operations.sol";
2020

contracts/SimpleOperations.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// See the License for the specific language governing permissions and
1515
// limitations under the License.
1616

17-
pragma solidity ^0.4.21;
17+
pragma solidity ^0.4.22;
1818

1919
import "./Operations.sol";
2020

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"ethereumjs-abi": "^0.6.5",
2727
"ganache-cli": "^6.1.0",
2828
"mocha-steps": "^1.1.0",
29-
"solidity-coverage": "^0.4.15",
29+
"solidity-coverage": "^0.5.0",
3030
"solium": "^1.1.6",
3131
"truffle": "^4.1.5"
3232
}

0 commit comments

Comments
 (0)