diff --git a/examples/create2/package.json b/examples/create2/package.json index f32b1cd4a..c4f905bd6 100644 --- a/examples/create2/package.json +++ b/examples/create2/package.json @@ -11,7 +11,7 @@ }, "devDependencies": { "hardhat": "^2.10.0", - "@ignored/hardhat-ignition": "^0.0.6" + "@ignored/hardhat-ignition": "^0.0.7" }, "dependencies": { "@openzeppelin/contracts": "4.7.3" diff --git a/examples/ens/package.json b/examples/ens/package.json index bcedb926e..218be9a65 100644 --- a/examples/ens/package.json +++ b/examples/ens/package.json @@ -12,7 +12,7 @@ "devDependencies": { "@ethersproject/abi": "5.7.0", "@ethersproject/providers": "5.7.2", - "@ignored/hardhat-ignition": "^0.0.6", + "@ignored/hardhat-ignition": "^0.0.7", "@nomicfoundation/hardhat-chai-matchers": "1.0.4", "@nomicfoundation/hardhat-network-helpers": "1.0.6", "@nomicfoundation/hardhat-toolbox": "2.0.0", diff --git a/examples/multisig/package.json b/examples/multisig/package.json index f1ce8c25e..2059b4afe 100644 --- a/examples/multisig/package.json +++ b/examples/multisig/package.json @@ -12,7 +12,7 @@ "devDependencies": { "@ethersproject/abi": "5.7.0", "@ethersproject/providers": "5.7.2", - "@ignored/hardhat-ignition": "^0.0.6", + "@ignored/hardhat-ignition": "^0.0.7", "@nomicfoundation/hardhat-chai-matchers": "1.0.4", "@nomicfoundation/hardhat-network-helpers": "1.0.6", "@nomicfoundation/hardhat-toolbox": "2.0.0", diff --git a/examples/sample/package.json b/examples/sample/package.json index 269c3106b..ef6f2c363 100644 --- a/examples/sample/package.json +++ b/examples/sample/package.json @@ -12,7 +12,7 @@ "devDependencies": { "@ethersproject/abi": "5.7.0", "@ethersproject/providers": "5.7.2", - "@ignored/hardhat-ignition": "^0.0.6", + "@ignored/hardhat-ignition": "^0.0.7", "@nomicfoundation/hardhat-chai-matchers": "1.0.4", "@nomicfoundation/hardhat-network-helpers": "1.0.6", "@nomicfoundation/hardhat-toolbox": "2.0.0", diff --git a/examples/uniswap/package.json b/examples/uniswap/package.json index 62fbd2e94..cf91cae7a 100644 --- a/examples/uniswap/package.json +++ b/examples/uniswap/package.json @@ -12,7 +12,7 @@ "devDependencies": { "@ethersproject/abi": "5.7.0", "@ethersproject/providers": "5.7.2", - "@ignored/hardhat-ignition": "^0.0.6", + "@ignored/hardhat-ignition": "^0.0.7", "@nomicfoundation/hardhat-chai-matchers": "1.0.4", "@nomicfoundation/hardhat-network-helpers": "1.0.6", "@nomicfoundation/hardhat-toolbox": "2.0.0", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 6c0cdf85c..2b3650a34 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## 0.0.7 - 2023-01-31 + +### Fixed + +- Resolve parameter args for deployed contracts during execution ([#125](https://github.com/NomicFoundation/ignition/pull/125)) + ## 0.0.6 - 2023-01-20 ### Added diff --git a/packages/core/package.json b/packages/core/package.json index aef13d855..8ed46e757 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@ignored/ignition-core", - "version": "0.0.6", + "version": "0.0.7", "license": "MIT", "author": "Nomic Foundation", "homepage": "https://hardhat.org", diff --git a/packages/hardhat-plugin/CHANGELOG.md b/packages/hardhat-plugin/CHANGELOG.md index ec7cddd70..ab5801709 100644 --- a/packages/hardhat-plugin/CHANGELOG.md +++ b/packages/hardhat-plugin/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## 0.0.7 - 2023-01-31 + +### Fixed + +- Resolve parameter args for deployed contracts during execution ([#125](https://github.com/NomicFoundation/ignition/pull/125)) + ## 0.0.6 - 2023-01-20 ### Added diff --git a/packages/hardhat-plugin/package.json b/packages/hardhat-plugin/package.json index bfa744c25..92c4d5786 100644 --- a/packages/hardhat-plugin/package.json +++ b/packages/hardhat-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@ignored/hardhat-ignition", - "version": "0.0.6", + "version": "0.0.7", "license": "MIT", "author": "Nomic Foundation", "homepage": "https://hardhat.org", @@ -33,7 +33,7 @@ "clean": "rimraf .nyc_output coverage dist tsconfig.tsbuildinfo" }, "devDependencies": { - "@ignored/ignition-core": "^0.0.6", + "@ignored/ignition-core": "^0.0.7", "@istanbuljs/nyc-config-typescript": "1.0.2", "@nomiclabs/hardhat-ethers": "^2.0.2", "@types/chai": "^4.2.22", @@ -70,7 +70,7 @@ "typescript": "^4.7.4" }, "peerDependencies": { - "@ignored/ignition-core": "^0.0.6", + "@ignored/ignition-core": "^0.0.7", "@nomiclabs/hardhat-ethers": "^2.0.2", "hardhat": "^2.12.0" },