Skip to content

Commit 5b28b96

Browse files
Version Packages (#233)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 70424b4 commit 5b28b96

File tree

12 files changed

+46
-32
lines changed

12 files changed

+46
-32
lines changed

.changeset/moody-kangaroos-melt.md

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

.changeset/sixty-boats-sip.md

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

.changeset/three-donuts-sniff.md

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

.changeset/tidy-goats-rule.md

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

example/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.3
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`0c5209b`](https://github.com/Developer-DAO/web3-ui/commit/0c5209b987665a3875b297733e6dde8205cd3965), [`16b8481`](https://github.com/Developer-DAO/web3-ui/commit/16b8481995f3f934f94305fbae5f3a6370e4fb20), [`ece14b2`](https://github.com/Developer-DAO/web3-ui/commit/ece14b2ea025772eef0251432dc43e41e3e219c0), [`b66e93a`](https://github.com/Developer-DAO/web3-ui/commit/b66e93a97f9c260b903ba0545fd368ec4842f349)]:
8+
- @web3-ui/hooks@0.9.0
9+
- @web3-ui/core@0.4.1
10+
- @web3-ui/components@0.5.0
11+
312
## 0.1.2
413

514
### Patch Changes

example/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.2",
3+
"version": "0.1.3",
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.4.1",
17-
"@web3-ui/core": "^0.4.0",
18-
"@web3-ui/hooks": "^0.8.1",
16+
"@web3-ui/components": "^0.5.0",
17+
"@web3-ui/core": "^0.4.1",
18+
"@web3-ui/hooks": "^0.9.0",
1919
"next": "12.0.7",
2020
"react": "17.0.2",
2121
"react-dom": "17.0.2",

packages/components/CHANGELOG.md

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

3+
## 0.5.0
4+
5+
### Minor Changes
6+
7+
- [#90](https://github.com/Developer-DAO/web3-ui/pull/90) [`16b8481`](https://github.com/Developer-DAO/web3-ui/commit/16b8481995f3f934f94305fbae5f3a6370e4fb20) Thanks [@swetshaw](https://github.com/swetshaw)! - Added a EtherInput component that supports input in wei or ether and automatically converts it to wei for you!
8+
39
## 0.4.1
410

511
### 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.4.1",
4+
"version": "0.5.0",
55
"private": false,
66
"description": "React UI components for web3",
77
"keywords": [
@@ -51,7 +51,7 @@
5151
"@types/node": "^16.11.9",
5252
"@types/react": "^17.0.36",
5353
"@types/react-dom": "^16.9.10",
54-
"@web3-ui/hooks": "^0.8.0",
54+
"@web3-ui/hooks": "^0.9.0",
5555
"babel-loader": "^8.2.1",
5656
"identity-obj-proxy": "^3.0.0",
5757
"prettier": "^2.2.0",

packages/core/CHANGELOG.md

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

3+
## 0.4.1
4+
5+
### Patch Changes
6+
7+
- [#217](https://github.com/Developer-DAO/web3-ui/pull/217) [`0c5209b`](https://github.com/Developer-DAO/web3-ui/commit/0c5209b987665a3875b297733e6dde8205cd3965) Thanks [@with-heart](https://github.com/with-heart)! - Added `ERC20ABI` as an export of `@web3-ui/hooks` in order to resolve an incorrect import in the `@web3-ui/core` package.
8+
9+
- Updated dependencies [[`0c5209b`](https://github.com/Developer-DAO/web3-ui/commit/0c5209b987665a3875b297733e6dde8205cd3965), [`16b8481`](https://github.com/Developer-DAO/web3-ui/commit/16b8481995f3f934f94305fbae5f3a6370e4fb20), [`ece14b2`](https://github.com/Developer-DAO/web3-ui/commit/ece14b2ea025772eef0251432dc43e41e3e219c0), [`b66e93a`](https://github.com/Developer-DAO/web3-ui/commit/b66e93a97f9c260b903ba0545fd368ec4842f349)]:
10+
- @web3-ui/hooks@0.9.0
11+
- @web3-ui/components@0.5.0
12+
313
## 0.4.0
414

515
### 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.4.0",
4+
"version": "0.4.1",
55
"private": false,
66
"description": "React UI components for web3",
77
"keywords": [
@@ -38,8 +38,8 @@
3838
"@chakra-ui/react": "^1.7.2",
3939
"@emotion/react": "^11",
4040
"@emotion/styled": "^11",
41-
"@web3-ui/components": "^0.4.0",
42-
"@web3-ui/hooks": "^0.8.1",
41+
"@web3-ui/components": "^0.5.0",
42+
"@web3-ui/hooks": "^0.9.0",
4343
"framer-motion": "^4"
4444
},
4545
"peerDependencies": {
@@ -54,7 +54,7 @@
5454
"@types/node": "^16.11.9",
5555
"@types/react": "^17.0.36",
5656
"@types/react-dom": "^16.9.10",
57-
"@web3-ui/hooks": "^0.8.1",
57+
"@web3-ui/hooks": "^0.9.0",
5858
"babel-loader": "^8.2.1",
5959
"classnames": "^2.2.6",
6060
"identity-obj-proxy": "^3.0.0",

packages/hooks/CHANGELOG.md

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

3+
## 0.9.0
4+
5+
### Minor Changes
6+
7+
- [#217](https://github.com/Developer-DAO/web3-ui/pull/217) [`0c5209b`](https://github.com/Developer-DAO/web3-ui/commit/0c5209b987665a3875b297733e6dde8205cd3965) Thanks [@with-heart](https://github.com/with-heart)! - Added `ERC20ABI` as an export of `@web3-ui/hooks` in order to resolve an incorrect import in the `@web3-ui/core` package.
8+
9+
* [#216](https://github.com/Developer-DAO/web3-ui/pull/216) [`ece14b2`](https://github.com/Developer-DAO/web3-ui/commit/ece14b2ea025772eef0251432dc43e41e3e219c0) Thanks [@Redarcher9](https://github.com/Redarcher9)! - Added docstring to the `useContract` and `useTokenBalance` hooks
10+
11+
- [#234](https://github.com/Developer-DAO/web3-ui/pull/234) [`b66e93a`](https://github.com/Developer-DAO/web3-ui/commit/b66e93a97f9c260b903ba0545fd368ec4842f349) Thanks [@Dhaiwat10](https://github.com/Dhaiwat10)! - You can now pass in your arguments directly to the execute function in useTransaction.
12+
313
## 0.8.1
414

515
### 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.8.1",
4+
"version": "0.9.0",
55
"private": false,
66
"description": "React hooks for web3",
77
"keywords": [

0 commit comments

Comments
 (0)