Skip to content

Commit

Permalink
chore: bump version to v0.15.0
Browse files Browse the repository at this point in the history
Update the packages versions and changelogs for the `0.15.0 -
2024-03-13` release.
  • Loading branch information
kanej committed Mar 13, 2024
1 parent d8f3d27 commit 6a2bf9f
Show file tree
Hide file tree
Showing 17 changed files with 127 additions and 240 deletions.
4 changes: 2 additions & 2 deletions examples/complete/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nomicfoundation/ignition-complete-example",
"private": true,
"version": "0.14.0",
"version": "0.15.0",
"scripts": {
"test": "hardhat test",
"lint": "npm run prettier -- --check && npm run eslint",
Expand All @@ -10,7 +10,7 @@
"prettier": "prettier \"*.{js,md,json}\" \"ignition/modules/*.{js,md,json}\" \"test/*.{js,md,json}\" \"contracts/**/*.sol\""
},
"devDependencies": {
"@nomicfoundation/hardhat-ignition-ethers": "^0.14.0",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"hardhat": "2.20.0",
"prettier-plugin-solidity": "1.1.3"
Expand Down
4 changes: 2 additions & 2 deletions examples/ens/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nomicfoundation/ignition-ens-example",
"private": true,
"version": "0.14.0",
"version": "0.15.0",
"scripts": {
"test": "hardhat test",
"lint": "npm run prettier -- --check && npm run eslint",
Expand All @@ -10,7 +10,7 @@
"prettier": "prettier \"*.{js,md,json}\" \"ignition/modules/*.{js,md,json}\" \"test/*.{js,md,json}\" \"contracts/**/*.sol\""
},
"devDependencies": {
"@nomicfoundation/hardhat-ignition-ethers": "^0.14.0",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"hardhat": "2.20.0",
"prettier-plugin-solidity": "1.1.3"
Expand Down
4 changes: 2 additions & 2 deletions examples/sample/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nomicfoundation/ignition-sample-example",
"private": true,
"version": "0.14.0",
"version": "0.15.0",
"scripts": {
"test": "hardhat test",
"lint": "npm run prettier -- --check && npm run eslint",
Expand All @@ -10,7 +10,7 @@
"prettier": "prettier \"*.{js,md,json}\" \"ignition/modules/*.{js,md,json}\" \"test/*.{js,md,json}\" \"contracts/**/*.sol\""
},
"devDependencies": {
"@nomicfoundation/hardhat-ignition-ethers": "^0.14.0",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"hardhat": "2.20.0",
"prettier-plugin-solidity": "1.1.3"
Expand Down
4 changes: 2 additions & 2 deletions examples/ts-sample/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nomicfoundation/ignition-ts-sample-example",
"private": true,
"version": "0.14.0",
"version": "0.15.0",
"scripts": {
"test": "hardhat test",
"lint": "npm run prettier -- --check && npm run eslint",
Expand All @@ -10,7 +10,7 @@
"prettier": "prettier \"*.{js,ts,md,json}\" \"ignition/modules/*.{js,ts,md,json}\" \"test/*.{js,ts,md,json}\" \"contracts/**/*.sol\""
},
"devDependencies": {
"@nomicfoundation/hardhat-ignition-ethers": "^0.14.0",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"hardhat": "2.20.0",
"prettier-plugin-solidity": "1.1.3"
Expand Down
3 changes: 2 additions & 1 deletion examples/viem-sample/hardhat.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import type { HardhatUserConfig } from "hardhat/types";

import "@nomicfoundation/hardhat-toolbox-viem";
import "@nomicfoundation/hardhat-chai-matchers";
import "@nomicfoundation/hardhat-ignition-viem";
import "@nomicfoundation/hardhat-viem";

const config: HardhatUserConfig = {
solidity: "0.8.19",
Expand Down
8 changes: 5 additions & 3 deletions examples/viem-sample/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nomicfoundation/ignition-viem-sample-example",
"private": true,
"version": "0.14.0",
"version": "0.15.0",
"scripts": {
"test": "hardhat test",
"lint": "npm run prettier -- --check && npm run eslint",
Expand All @@ -10,8 +10,10 @@
"prettier": "prettier \"*.{js,ts,md,json}\" \"ignition/modules/*.{js,ts,md,json}\" \"test/*.{js,ts,md,json}\" \"contracts/**/*.sol\""
},
"devDependencies": {
"@nomicfoundation/hardhat-ignition-viem": "^0.14.0",
"@nomicfoundation/hardhat-toolbox-viem": "2.0.0",
"@nomicfoundation/hardhat-ignition-viem": "^0.15.0",
"@nomicfoundation/hardhat-network-helpers": "1.0.10",
"@nomicfoundation/hardhat-viem": "2.0.0",
"chai": "4.4.1",
"hardhat": "2.20.0",
"prettier-plugin-solidity": "1.1.3"
}
Expand Down
7 changes: 2 additions & 5 deletions examples/viem-sample/test/Lock.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
import {
time,
loadFixture,
} from "@nomicfoundation/hardhat-toolbox-viem/network-helpers";
import { expect, assert } from "chai";
import { loadFixture, time } from "@nomicfoundation/hardhat-network-helpers";
import { expect } from "chai";
import hre from "hardhat";

import LockModule from "../ignition/modules/LockModule";
Expand Down
Loading

0 comments on commit 6a2bf9f

Please sign in to comment.