Skip to content

Commit

Permalink
chore: bump version to v0.13.0
Browse files Browse the repository at this point in the history
Update the packages versions and changelogs for the `0.13.0 -
2023-12-13` release.
  • Loading branch information
kanej committed Dec 13, 2023
1 parent e4f2735 commit 2694593
Show file tree
Hide file tree
Showing 15 changed files with 79 additions and 44 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.12.0",
"version": "0.13.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": "^0.12.0",
"@nomicfoundation/hardhat-ignition-ethers": "^0.13.0",
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"hardhat": "^2.18.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.12.0",
"version": "0.13.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": "^0.12.0",
"@nomicfoundation/hardhat-ignition-ethers": "^0.13.0",
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"hardhat": "^2.18.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.12.0",
"version": "0.13.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": "^0.12.0",
"@nomicfoundation/hardhat-ignition-ethers": "^0.13.0",
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"hardhat": "^2.18.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.12.0",
"version": "0.13.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": "^0.12.0",
"@nomicfoundation/hardhat-ignition-ethers": "^0.13.0",
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"hardhat": "^2.18.0",
"prettier-plugin-solidity": "1.1.3"
Expand Down
4 changes: 2 additions & 2 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.12.0",
"version": "0.13.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-viem": "^0.12.0",
"@nomicfoundation/hardhat-ignition-viem": "^0.13.0",
"@nomicfoundation/hardhat-toolbox-viem": "2.0.0",
"hardhat": "^2.18.0",
"prettier-plugin-solidity": "1.1.3"
Expand Down
44 changes: 22 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ 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.13.0 - 2023-12-13

### Added

- Enhance types around artifacts and ABIs to better support `Viem` type inference ([#612](https://github.com/NomicFoundation/hardhat-ignition/pull/612))

### Fixed

- Fix bug with default sender account not being recognised due to case sensitivity ([#640](https://github.com/NomicFoundation/hardhat-ignition/pull/640))

## 0.12.0 - 2023-12-05

### Added
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomicfoundation/ignition-core",
"version": "0.12.0",
"version": "0.13.0",
"license": "MIT",
"author": "Nomic Foundation",
"homepage": "https://hardhat.org",
Expand Down
7 changes: 7 additions & 0 deletions packages/hardhat-plugin-ethers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,10 @@
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.13.0 - 2023-12-13

### Added

- Add `@nomicfoundation/hardhat-plugin-ethers` package, that adds an `ignition` object to the Hardhat Runtime Environment that supports deploying Ignition modules and returning deployed contracts as [Ethers](https://docs.ethers.org) contract instances ([#612](https://github.com/NomicFoundation/hardhat-ignition/pull/612))
- Add support for setting the default sender account from tests and scripts ([#639](https://github.com/NomicFoundation/hardhat-ignition/issues/639))
6 changes: 3 additions & 3 deletions packages/hardhat-plugin-ethers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomicfoundation/hardhat-ignition-ethers",
"version": "0.12.0",
"version": "0.13.0",
"license": "MIT",
"author": "Nomic Foundation",
"homepage": "https://hardhat.org",
Expand Down Expand Up @@ -47,8 +47,8 @@
},
"peerDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-ignition": "^0.12.0",
"@nomicfoundation/ignition-core": "^0.12.0",
"@nomicfoundation/hardhat-ignition": "^0.13.0",
"@nomicfoundation/ignition-core": "^0.13.0",
"ethers": "^6.7.0",
"hardhat": "^2.18.0"
}
Expand Down
7 changes: 7 additions & 0 deletions packages/hardhat-plugin-viem/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,10 @@
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.13.0 - 2023-12-13

### Added

- Add `@nomicfoundation/hardhat-plugin-viem` package, that adds an `ignition` object to the Hardhat Runtime Environment that supports deploying Ignition modules and returning deployed contracts as [Viem](https://viem.sh/) contract instances, see the our [Viem guide](https://hardhat.org/ignition/docs/guides/viem) for more details ([#612](https://github.com/NomicFoundation/hardhat-ignition/pull/612))
- Add support for setting the default sender account from tests and scripts ([#639](https://github.com/NomicFoundation/hardhat-ignition/issues/639))
6 changes: 3 additions & 3 deletions packages/hardhat-plugin-viem/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomicfoundation/hardhat-ignition-viem",
"version": "0.12.0",
"version": "0.13.0",
"license": "MIT",
"author": "Nomic Foundation",
"homepage": "https://hardhat.org",
Expand Down Expand Up @@ -47,9 +47,9 @@
"@types/sinon": "^10.0.13"
},
"peerDependencies": {
"@nomicfoundation/hardhat-ignition": "^0.12.0",
"@nomicfoundation/hardhat-ignition": "^0.13.0",
"@nomicfoundation/hardhat-viem": "^1.0.0",
"@nomicfoundation/ignition-core": "^0.12.0",
"@nomicfoundation/ignition-core": "^0.13.0",
"hardhat": "^2.18.0",
"viem": "^1.18.1"
}
Expand Down
11 changes: 11 additions & 0 deletions packages/hardhat-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ 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.13.0 - 2023-12-13

### Added

- Add support for setting the default sender account from tests and scripts ([#639](https://github.com/NomicFoundation/hardhat-ignition/issues/639))
- Add support for setting the default sender from the cli ([#620](https://github.com/NomicFoundation/hardhat-ignition/issues/620))

### Changed

- Split out `ethers` support from `@nomicfoundation/hardhat-plugin`, to allow opting for either **ethers** or **Viem** in tests and scripts. If you were using `hre.ignition.deploy(...)` in tests or scripts you will need to install, and require in your Hardhat config, the `@nomicfoundation/hardhat-plugin-ethers` package. For more details on our [Viem support see our guide](https://hardhat.org/ignition/docs/guides/viem). ([#612](https://github.com/NomicFoundation/hardhat-ignition/pull/612))

## 0.12.0 - 2023-12-05

### Added
Expand Down
6 changes: 3 additions & 3 deletions packages/hardhat-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomicfoundation/hardhat-ignition",
"version": "0.12.0",
"version": "0.13.0",
"license": "MIT",
"author": "Nomic Foundation",
"homepage": "https://hardhat.org",
Expand Down Expand Up @@ -66,8 +66,8 @@
"hardhat": "^2.18.0"
},
"dependencies": {
"@nomicfoundation/ignition-core": "^0.12.0",
"@nomicfoundation/ignition-ui": "^0.12.0",
"@nomicfoundation/ignition-core": "^0.13.0",
"@nomicfoundation/ignition-ui": "^0.13.0",
"chalk": "^4.0.0",
"debug": "^4.3.2",
"fs-extra": "^10.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomicfoundation/ignition-ui",
"version": "0.12.0",
"version": "0.13.0",
"type": "module",
"scripts": {
"predev": "npm run regenerate-deployment-example",
Expand All @@ -16,7 +16,7 @@
"dependencies": {},
"devDependencies": {
"@fontsource/roboto": "^5.0.8",
"@nomicfoundation/ignition-core": "^0.12.0",
"@nomicfoundation/ignition-core": "^0.13.0",
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.5",
"@types/react": "^18.0.28",
Expand Down

0 comments on commit 2694593

Please sign in to comment.