Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
vittominacori committed Feb 12, 2021
1 parent 7f8a153 commit 0e33811
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 34 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,23 +67,23 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

nightly_build:
name: Nightly Build
runs-on: ubuntu-latest

steps:
- name: Setup Code
uses: actions/checkout@v2

- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '14.x'

- name: Install dependencies
run: npm install

- name: Nightly Build
run: npm run truffle:test
env:
SOLC_NIGHTLY: true
# nightly_build:
# name: Nightly Build
# runs-on: ubuntu-latest
#
# steps:
# - name: Setup Code
# uses: actions/checkout@v2
#
# - name: Setup Node
# uses: actions/setup-node@v1
# with:
# node-version: '14.x'
#
# - name: Install dependencies
# run: npm install
#
# - name: Nightly Build
# run: npm run truffle:test
# env:
# SOLC_NIGHTLY: true
2 changes: 1 addition & 1 deletion hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {
},
},
solidity: {
version: '0.7.5',
version: '0.7.6',
settings: {
optimizer: {
enabled: true,
Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "erc-payable-token",
"version": "3.3.1",
"version": "3.4.0",
"description": "ERC-1363 Payable Token Implementation",
"files": [
"contracts",
Expand Down Expand Up @@ -46,27 +46,27 @@
},
"homepage": "https://vittominacori.github.io/erc1363-payable-token",
"dependencies": {
"@openzeppelin/contracts": "3.3.0-solc-0.7"
"@openzeppelin/contracts": "3.4.0-solc-0.7"
},
"devDependencies": {
"@nomiclabs/hardhat-ganache": "^2.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.9",
"@vuepress/plugin-google-analytics": "^1.7.1",
"chai": "^4.2.0",
"eslint": "^7.14.0",
"@openzeppelin/test-helpers": "^0.5.10",
"@vuepress/plugin-google-analytics": "^1.8.1",
"chai": "^4.3.0",
"eslint": "^7.19.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"ganache-cli": "^6.12.1",
"hardhat": "^2.0.4",
"ganache-cli": "^6.12.2",
"hardhat": "^2.0.10",
"solhint": "^3.3.2",
"solidity-coverage": "^0.7.12",
"truffle": "5.1.49",
"vuepress": "^1.7.1"
"solidity-coverage": "^0.7.14",
"truffle": "^5.1.65",
"vuepress": "^1.8.1"
}
}
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.7.5',
version: '0.7.6',
settings: {
optimizer: {
enabled: true,
Expand Down

0 comments on commit 0e33811

Please sign in to comment.