Skip to content

Commit 39ba439

Browse files
Version Packages (#161)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 1a33c80 commit 39ba439

File tree

10 files changed

+35
-28
lines changed

10 files changed

+35
-28
lines changed

.changeset/popular-islands-sell.md

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

.changeset/tiny-bees-film.md

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

.changeset/yellow-eels-hug.md

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

.changeset/yellow-eyes-eat.md

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

packages/components/CHANGELOG.md

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

3+
## 0.4.0
4+
5+
### Minor Changes
6+
7+
- [#150](https://github.com/Developer-DAO/web3-ui/pull/150) [`f0c96df`](https://github.com/Developer-DAO/web3-ui/commit/f0c96df7468fbe0993b8e90979407c27ba7a22bd) Thanks [@Ibby-devv](https://github.com/Ibby-devv)! - Accept any ChakraProvider-compatible props in our Provider
8+
9+
* [#163](https://github.com/Developer-DAO/web3-ui/pull/163) [`01ce580`](https://github.com/Developer-DAO/web3-ui/commit/01ce5809debb2284545620861d11893e4f9675f0) Thanks [@Dhaiwat10](https://github.com/Dhaiwat10)! - Add missing exports
10+
11+
- [#164](https://github.com/Developer-DAO/web3-ui/pull/164) [`184ec43`](https://github.com/Developer-DAO/web3-ui/commit/184ec43e0542a0057f7847a9c696eb0479f96438) Thanks [@hone1er](https://github.com/hone1er)! - Bug fix. Added null check to address component for value prop
12+
313
## 0.3.1
414

515
### Patch 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.3.1",
4+
"version": "0.4.0",
55
"private": false,
66
"engines": {
77
"node": ">=16.0.0",
@@ -46,7 +46,7 @@
4646
"@types/node": "^16.11.9",
4747
"@types/react": "^17.0.36",
4848
"@types/react-dom": "^16.9.10",
49-
"@web3-ui/hooks": "^0.5.1",
49+
"@web3-ui/hooks": "^0.6.0",
5050
"babel-loader": "^8.2.1",
5151
"identity-obj-proxy": "^3.0.0",
5252
"prettier": "^2.2.0",

packages/core/CHANGELOG.md

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

3+
## 0.2.0
4+
5+
### Minor Changes
6+
7+
- [#166](https://github.com/Developer-DAO/web3-ui/pull/166) [`1a33c80`](https://github.com/Developer-DAO/web3-ui/commit/1a33c8097a2608e029336301a0082e1d240b65df) Thanks [@Dhaiwat10](https://github.com/Dhaiwat10)! - Export all the hooks from the core package too
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`f0c96df`](https://github.com/Developer-DAO/web3-ui/commit/f0c96df7468fbe0993b8e90979407c27ba7a22bd), [`01ce580`](https://github.com/Developer-DAO/web3-ui/commit/01ce5809debb2284545620861d11893e4f9675f0), [`184ec43`](https://github.com/Developer-DAO/web3-ui/commit/184ec43e0542a0057f7847a9c696eb0479f96438)]:
12+
- @web3-ui/components@0.4.0
13+
- @web3-ui/hooks@0.6.0
14+
315
## 0.1.4
416

517
### Patch 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.1.4",
4+
"version": "0.2.0",
55
"private": false,
66
"engines": {
77
"node": ">=16.0.0",
@@ -32,8 +32,8 @@
3232
"@emotion/react": "^11",
3333
"@emotion/styled": "^11",
3434
"framer-motion": "^4",
35-
"@web3-ui/components": "^0.3.1",
36-
"@web3-ui/hooks": "^0.5.1"
35+
"@web3-ui/components": "^0.4.0",
36+
"@web3-ui/hooks": "^0.6.0"
3737
},
3838
"peerDependencies": {
3939
"react": "*",
@@ -47,7 +47,7 @@
4747
"@types/node": "^16.11.9",
4848
"@types/react": "^17.0.36",
4949
"@types/react-dom": "^16.9.10",
50-
"@web3-ui/hooks": "^0.5.1",
50+
"@web3-ui/hooks": "^0.6.0",
5151
"babel-loader": "^8.2.1",
5252
"classnames": "^2.2.6",
5353
"ethers": "^5.5.1",

packages/hooks/CHANGELOG.md

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

3+
## 0.6.0
4+
5+
### Minor Changes
6+
7+
- [#163](https://github.com/Developer-DAO/web3-ui/pull/163) [`01ce580`](https://github.com/Developer-DAO/web3-ui/commit/01ce5809debb2284545620861d11893e4f9675f0) Thanks [@Dhaiwat10](https://github.com/Dhaiwat10)! - Add missing exports
8+
39
## 0.5.1
410

511
### Patch Changes

packages/hooks/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@web3-ui/hooks",
33
"license": "MIT",
4-
"version": "0.5.1",
4+
"version": "0.6.0",
55
"private": false,
66
"engines": {
77
"node": ">=16.0.0",

0 commit comments

Comments
 (0)