diff --git a/.changeset/social-seal-do.md b/.changeset/social-seal-do.md deleted file mode 100644 index 0b28d0a7f..000000000 --- a/.changeset/social-seal-do.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"hardhat": patch ---- - -Aggregate `--gas-stats` output when using multiple test runners, printing a single consolidated table at the end instead of separate tables per runner ([#7500](https://github.com/NomicFoundation/hardhat/issues/7500)). diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0880c56a4..0892d36b5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -141,7 +141,7 @@ importers: specifier: foundry-rs/forge-std#v1.9.4 version: https://codeload.github.com/foundry-rs/forge-std/tar.gz/1eea5bae12ae557d589f9f0f0edae2faa47cb262 hardhat: - specifier: workspace:^3.1.12 + specifier: workspace:^3.1.13 version: link:../hardhat mocha: specifier: ^11.0.0 @@ -1633,7 +1633,7 @@ importers: specifier: foundry-rs/forge-std#v1.9.4 version: https://codeload.github.com/foundry-rs/forge-std/tar.gz/1eea5bae12ae557d589f9f0f0edae2faa47cb262 hardhat: - specifier: workspace:^3.1.12 + specifier: workspace:^3.1.13 version: link:../../.. typescript: specifier: ~5.8.0 @@ -1700,7 +1700,7 @@ importers: specifier: foundry-rs/forge-std#v1.9.4 version: https://codeload.github.com/foundry-rs/forge-std/tar.gz/1eea5bae12ae557d589f9f0f0edae2faa47cb262 hardhat: - specifier: workspace:^3.1.12 + specifier: workspace:^3.1.13 version: link:../../.. mocha: specifier: ^11.0.0 @@ -1715,7 +1715,7 @@ importers: specifier: ^22.8.5 version: 22.18.7 hardhat: - specifier: workspace:^3.1.12 + specifier: workspace:^3.1.13 version: link:../../.. typescript: specifier: ~5.8.0 diff --git a/v-next/example-project/package.json b/v-next/example-project/package.json index a523c1c2f..2fa7d97a3 100644 --- a/v-next/example-project/package.json +++ b/v-next/example-project/package.json @@ -22,7 +22,7 @@ "test": "hardhat test nodejs && hardhat test mocha" }, "devDependencies": { - "hardhat": "workspace:^3.1.12", + "hardhat": "workspace:^3.1.13", "@nomicfoundation/hardhat-ethers-chai-matchers": "workspace:^3.0.3", "@nomicfoundation/hardhat-errors": "workspace:^3.0.8", "@nomicfoundation/hardhat-ethers": "workspace:^4.0.6", diff --git a/v-next/hardhat/CHANGELOG.md b/v-next/hardhat/CHANGELOG.md index 969f15ce7..c55ffae5f 100644 --- a/v-next/hardhat/CHANGELOG.md +++ b/v-next/hardhat/CHANGELOG.md @@ -1,5 +1,11 @@ # hardhat +## 3.1.13 + +### Patch Changes + +- [#8036](https://github.com/NomicFoundation/hardhat/pull/8036) [`954825a`](https://github.com/NomicFoundation/hardhat/commit/954825a35f5813625c4a72d8e887895d7a71e78b) Thanks [@schaable](https://github.com/schaable)! - Aggregate `--gas-stats` output when using multiple test runners, printing a single consolidated table at the end instead of separate tables per runner ([#7500](https://github.com/NomicFoundation/hardhat/issues/7500)). + ## 3.1.12 ### Patch Changes diff --git a/v-next/hardhat/package.json b/v-next/hardhat/package.json index 43bbef63a..eb7657390 100644 --- a/v-next/hardhat/package.json +++ b/v-next/hardhat/package.json @@ -1,6 +1,6 @@ { "name": "hardhat", - "version": "3.1.12", + "version": "3.1.13", "description": "Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.", "homepage": "https://github.com/nomicfoundation/hardhat/tree/v-next/v-next/hardhat", "repository": { diff --git a/v-next/hardhat/templates/hardhat-3/01-node-test-runner-viem/package.json b/v-next/hardhat/templates/hardhat-3/01-node-test-runner-viem/package.json index fea562265..d4f350226 100644 --- a/v-next/hardhat/templates/hardhat-3/01-node-test-runner-viem/package.json +++ b/v-next/hardhat/templates/hardhat-3/01-node-test-runner-viem/package.json @@ -5,7 +5,7 @@ "description": "A TypeScript Hardhat project using Node Test Runner and Viem", "type": "module", "devDependencies": { - "hardhat": "workspace:^3.1.12", + "hardhat": "workspace:^3.1.13", "@nomicfoundation/hardhat-toolbox-viem": "workspace:^5.0.3", "@nomicfoundation/hardhat-ignition": "workspace:^3.0.9", "@types/node": "^22.8.5", diff --git a/v-next/hardhat/templates/hardhat-3/02-mocha-ethers/package.json b/v-next/hardhat/templates/hardhat-3/02-mocha-ethers/package.json index 7ee07a3aa..77415f669 100644 --- a/v-next/hardhat/templates/hardhat-3/02-mocha-ethers/package.json +++ b/v-next/hardhat/templates/hardhat-3/02-mocha-ethers/package.json @@ -5,7 +5,7 @@ "description": "A TypeScript Hardhat project using Mocha and Ethers.js", "type": "module", "devDependencies": { - "hardhat": "workspace:^3.1.12", + "hardhat": "workspace:^3.1.13", "@nomicfoundation/hardhat-toolbox-mocha-ethers": "workspace:^3.0.3", "@nomicfoundation/hardhat-ethers": "workspace:^4.0.6", "@nomicfoundation/hardhat-ignition": "workspace:^3.0.9", diff --git a/v-next/hardhat/templates/hardhat-3/03-minimal/package.json b/v-next/hardhat/templates/hardhat-3/03-minimal/package.json index 73a15f7cd..3b1327db5 100644 --- a/v-next/hardhat/templates/hardhat-3/03-minimal/package.json +++ b/v-next/hardhat/templates/hardhat-3/03-minimal/package.json @@ -5,7 +5,7 @@ "description": "A minimal Hardhat project", "type": "module", "devDependencies": { - "hardhat": "workspace:^3.1.12", + "hardhat": "workspace:^3.1.13", "@types/node": "^22.8.5", "typescript": "~5.8.0" }