Skip to content

Commit 2bcf5bd

Browse files
Version Packages (#294)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent cb69862 commit 2bcf5bd

File tree

11 files changed

+50
-30
lines changed

11 files changed

+50
-30
lines changed

.changeset/four-apes-mix.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/khaki-cobras-laugh.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.changeset/metal-pets-remain.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

examples/nextjs/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# example
22

3+
## 0.1.8
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`29281c6`](https://github.com/Developer-DAO/web3-ui/commit/29281c6727aa74f5bb0807b4adf06428804bf319), [`be483bd`](https://github.com/Developer-DAO/web3-ui/commit/be483bd66022466578ed8ab7782db04b04c1b6c3), [`b23d01b`](https://github.com/Developer-DAO/web3-ui/commit/b23d01b93cf74626f33913cbaa270ddd6f111636)]:
8+
- @web3-ui/hooks@0.11.0
9+
- @web3-ui/components@0.10.0
10+
- @web3-ui/core@0.6.1
11+
312
## 0.1.7
413

514
### Patch Changes

examples/nextjs/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "example",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",
@@ -13,9 +13,9 @@
1313
"dependencies": {
1414
"@chakra-ui/react": "^1.7.3",
1515
"@typechain/ethers-v5": "^8.0.5",
16-
"@web3-ui/components": "^0.9.0",
17-
"@web3-ui/core": "^0.6.0",
18-
"@web3-ui/hooks": "^0.10.0",
16+
"@web3-ui/components": "^0.10.0",
17+
"@web3-ui/core": "^0.6.1",
18+
"@web3-ui/hooks": "^0.11.0",
1919
"next": "12.0.9",
2020
"react": "17.0.2",
2121
"react-dom": "17.0.2",

packages/components/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @web3-ui/components
22

3+
## 0.10.0
4+
5+
### Minor Changes
6+
7+
- [#293](https://github.com/Developer-DAO/web3-ui/pull/293) [`be483bd`](https://github.com/Developer-DAO/web3-ui/commit/be483bd66022466578ed8ab7782db04b04c1b6c3) Thanks [@Dhaiwat10](https://github.com/Dhaiwat10)! - !! BREAKING CHANGE !!
8+
`ethers` has been moved to peer dependencies for both the `components` and `hooks` packages. (It was already a peer dependency for `core`)
9+
10+
This means that you will users will now have to install `ethers` along side our packages manually.
11+
312
## 0.9.0
413

514
### Minor Changes

packages/components/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@web3-ui/components",
33
"license": "MIT",
4-
"version": "0.9.0",
4+
"version": "0.10.0",
55
"private": false,
66
"description": "React UI components for web3",
77
"keywords": [
@@ -46,7 +46,7 @@
4646
"ethers": "^5.5.2"
4747
},
4848
"devDependencies": {
49-
"@web3-ui/hooks": "^0.10.0",
49+
"@web3-ui/hooks": "^0.11.0",
5050
"react": "^17.0.2",
5151
"react-dom": "^17.0.2"
5252
}

packages/core/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @web3-ui/core
22

3+
## 0.6.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`29281c6`](https://github.com/Developer-DAO/web3-ui/commit/29281c6727aa74f5bb0807b4adf06428804bf319), [`be483bd`](https://github.com/Developer-DAO/web3-ui/commit/be483bd66022466578ed8ab7782db04b04c1b6c3), [`b23d01b`](https://github.com/Developer-DAO/web3-ui/commit/b23d01b93cf74626f33913cbaa270ddd6f111636)]:
8+
- @web3-ui/hooks@0.11.0
9+
- @web3-ui/components@0.10.0
10+
311
## 0.6.0
412

513
### Minor Changes

packages/core/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@web3-ui/core",
33
"license": "MIT",
4-
"version": "0.6.0",
4+
"version": "0.6.1",
55
"private": false,
66
"description": "React UI components for web3",
77
"keywords": [
@@ -38,16 +38,16 @@
3838
"@chakra-ui/react": "^1.7.2",
3939
"@emotion/react": "^11",
4040
"@emotion/styled": "^11",
41-
"@web3-ui/components": "^0.9.0",
42-
"@web3-ui/hooks": "^0.10.0",
41+
"@web3-ui/components": "^0.10.0",
42+
"@web3-ui/hooks": "^0.11.0",
4343
"framer-motion": "^4"
4444
},
4545
"peerDependencies": {
4646
"ethers": "^5.5.1",
4747
"react": ">= 16.8.0 | >= 17.0.0"
4848
},
4949
"devDependencies": {
50-
"@web3-ui/hooks": "^0.10.0",
50+
"@web3-ui/hooks": "^0.11.0",
5151
"react": "^17.0.2",
5252
"react-dom": "^17.0.2"
5353
}

packages/hooks/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @web3-ui/hooks
22

3+
## 0.11.0
4+
5+
### Minor Changes
6+
7+
- [#283](https://github.com/Developer-DAO/web3-ui/pull/283) [`29281c6`](https://github.com/Developer-DAO/web3-ui/commit/29281c6727aa74f5bb0807b4adf06428804bf319) Thanks [@Nazeeh21](https://github.com/Nazeeh21)! - Bug fixing for adding network to MetaMask
8+
9+
* [#293](https://github.com/Developer-DAO/web3-ui/pull/293) [`be483bd`](https://github.com/Developer-DAO/web3-ui/commit/be483bd66022466578ed8ab7782db04b04c1b6c3) Thanks [@Dhaiwat10](https://github.com/Dhaiwat10)! - !! BREAKING CHANGE !!
10+
`ethers` has been moved to peer dependencies for both the `components` and `hooks` packages. (It was already a peer dependency for `core`)
11+
12+
This means that you will users will now have to install `ethers` along side our packages manually.
13+
14+
- [#284](https://github.com/Developer-DAO/web3-ui/pull/284) [`b23d01b`](https://github.com/Developer-DAO/web3-ui/commit/b23d01b93cf74626f33913cbaa270ddd6f111636) Thanks [@juliankrispel](https://github.com/juliankrispel)! - Catch errors in connectWallet and expose them, correct type for connectWallet
15+
316
## 0.10.0
417

518
### Minor Changes

0 commit comments

Comments
 (0)