Skip to content

Commit

Permalink
update solidity and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
vittominacori committed Jan 4, 2020
1 parent a5e5084 commit af25d6e
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .solhint.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"separate-by-one-line-in-contract": "off",
"two-lines-top-level-separator": "off",
"mark-callable-contracts": "off",
"compiler-version": ["error", "^0.5.15"]
"compiler-version": ["error", "^0.5.16"]
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ npm install eth-token-recover
## Usage

```solidity
pragma solidity ^0.5.15;
pragma solidity ^0.5.16;
import "eth-token-recover/contracts/TokenRecover.sol";
Expand Down
2 changes: 1 addition & 1 deletion buidler.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = {
},
},
solc: {
version: '0.5.15',
version: '0.5.16',
evmVersion: 'istanbul',
optimizer: {
enabled: true,
Expand Down
2 changes: 1 addition & 1 deletion contracts/TokenRecover.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.5.15;
pragma solidity ^0.5.16;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/ownership/Ownable.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/mocks/ERC20Mock.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.5.15;
pragma solidity ^0.5.16;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

Expand Down
2 changes: 1 addition & 1 deletion ethpm.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"package_name": "eth-token-recover",
"version": "2.4.1",
"version": "2.4.3",
"description": "TokenRecover allows the contract owner to recover any ERC20 token sent into the contract for error",
"authors": [
"Vittorio Minacori (https://github.com/vittominacori)"
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eth-token-recover",
"version": "2.4.2",
"version": "2.4.3",
"description": "TokenRecover allows the contract owner to recover any ERC20 token sent into the contract for error",
"files": [
"contracts",
Expand Down Expand Up @@ -55,16 +55,16 @@
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-mocha-no-only": "^1.1.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ethereumjs-util": "^6.2.0",
"ethjs-abi": "^0.2.1",
"ganache-cli": "^6.8.0-istanbul.0",
"pify": "^4.0.1",
"solhint": "^2.3.0",
"solidity-coverage": "^0.7.0-beta.3",
"truffle": "^5.1.5",
"solidity-coverage": "^0.7.0",
"truffle": "^5.1.6",
"vuepress": "^0.14.11",
"web3": "^1.2.4"
}
Expand Down
2 changes: 1 addition & 1 deletion truffle-config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require('chai/register-should');

const solcStable = {
version: '0.5.15',
version: '0.5.16',
settings: {
optimizer: {
enabled: true,
Expand Down

0 comments on commit af25d6e

Please sign in to comment.