Skip to content

Commit

Permalink
Merge pull request #11 from pie-dao/feat/sol-0.7.1
Browse files Browse the repository at this point in the history
feat compiler bump
  • Loading branch information
MickdeGraaf authored Jan 20, 2021
2 parents bd2224e + 12e09d9 commit 754a69d
Show file tree
Hide file tree
Showing 9 changed files with 232 additions and 220 deletions.
2 changes: 1 addition & 1 deletion buidler.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ interface ExtendedBuidlerConfig extends BuidlerConfig {
const config: ExtendedBuidlerConfig = {
defaultNetwork: "buidlerevm",
solc: {
version: "0.6.2"
version: "0.7.1"
},
networks: {
mainnet: {
Expand Down
2 changes: 1 addition & 1 deletion contracts/PProxy.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.6.2;
pragma solidity ^0.7.1;

import "./PProxyStorage.sol";

Expand Down
48 changes: 0 additions & 48 deletions contracts/PProxyPausable.sol

This file was deleted.

2 changes: 1 addition & 1 deletion contracts/PProxyStorage.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.6.2;
pragma solidity ^0.7.1;

contract PProxyStorage {

Expand Down
5 changes: 0 additions & 5 deletions contracts/interfaces/IPProxyOverrides.sol

This file was deleted.

2 changes: 1 addition & 1 deletion contracts/test/TestImplementation.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.6.2;
pragma solidity ^0.7.1;


contract TestImplementation {
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"name": "@pie-dao/proxy",
"version": "0.0.6",
"version": "1.0.0",
"description": "Generic proxy pattern which can be used with any smart contract.",
"main": "index.js",
"scripts": {
"build": "npm run compile && npx buidler typechain",
"compile": "npx buidler compile",
"test": "npx buidler test",
"coverage": "npm run build && npx buidler coverage --temp artifacts --network coverage"
"coverage": "npm run build && npx buidler coverage --temp artifacts --network coverage",
"remix": "remixd -s . --remix-ide https://remix.ethereum.org"
},
"repository": {
"type": "git",
Expand All @@ -20,7 +21,6 @@
},
"homepage": "https://github.com/pie-dao/pie-proxy#readme",
"devDependencies": {
"@nomiclabs/buidler": "^1.1.2",
"@nomiclabs/buidler-ethers": "^1.1.2",
"@nomiclabs/buidler-etherscan": "^1.1.2",
"@nomiclabs/buidler-waffle": "^1.1.2",
Expand All @@ -41,6 +41,7 @@
"typescript": "^3.7.5"
},
"dependencies": {
"@nomiclabs/buidler": "1.3.0",
"dotenv": "^8.2.0"
},
"directories": {
Expand Down
100 changes: 0 additions & 100 deletions test/pProxyPausable.ts

This file was deleted.

Loading

0 comments on commit 754a69d

Please sign in to comment.