Skip to content

Commit 41fc0f3

Browse files
committed
chore: bump version
1 parent 6aa3b2a commit 41fc0f3

22 files changed

+67
-123
lines changed

docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"abitype": "*",
1818
"react": "^18.2.0",
1919
"unocss": "^0.53.6",
20-
"viem": "2.0.0-alpha.11",
20+
"viem": "2.0.0-alpha.12",
2121
"vite": "^4.4.9",
2222
"vitepress": "1.0.0-rc.20",
2323
"vitepress-plugin-shiki-twoslash": "^0.0.6",

package.json

+4-11
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"rimraf": "^4.4.1",
5151
"simple-git-hooks": "^2.9.0",
5252
"typescript": "5.1.6",
53-
"viem": "2.0.0-alpha.11",
53+
"viem": "2.0.0-alpha.12",
5454
"vitest": "^0.34.5"
5555
},
5656
"packageManager": "[email protected]",
@@ -74,13 +74,8 @@
7474
"vitest.workspace.ts",
7575
"packages/cli/src/plugins/__fixtures__/**"
7676
],
77-
"ignoreBinaries": [
78-
"biome"
79-
],
80-
"ignoreDependencies": [
81-
"@biomejs/biome",
82-
"only-allow"
83-
],
77+
"ignoreBinaries": ["biome"],
78+
"ignoreDependencies": ["@biomejs/biome", "only-allow"],
8479
"ignoreWorkspaces": [
8580
"docs",
8681
"packages/register-tests/**",
@@ -100,9 +95,7 @@
10095
},
10196
"packages/core": {
10297
"entry": "src/exports/{chains,index,internal,query}.ts!",
103-
"ignoreDependencies": [
104-
"@tanstack/query-core"
105-
]
98+
"ignoreDependencies": ["@tanstack/query-core"]
10699
},
107100
"packages/react": {
108101
"entry": "src/exports/{actions,chains,connectors,index,query}.ts!"

packages/cli/package.json

+6-19
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@wagmi/cli",
33
"description": "Manage and generate code from Ethereum ABIs",
4-
"version": "2.0.0-alpha.4",
4+
"version": "2.0.0-alpha.5",
55
"license": "MIT",
66
"repository": {
77
"type": "git",
@@ -49,12 +49,8 @@
4949
},
5050
"typesVersions": {
5151
"*": {
52-
"config": [
53-
"./dist/types/exports/config.d.ts"
54-
],
55-
"plugins": [
56-
"./dist/types/exports/plugins.d.ts"
57-
]
52+
"config": ["./dist/types/exports/config.d.ts"],
53+
"plugins": ["./dist/types/exports/plugins.d.ts"]
5854
}
5955
},
6056
"peerDependencies": {
@@ -83,7 +79,7 @@
8379
"pathe": "^1.1.1",
8480
"picocolors": "^1.0.0",
8581
"prettier": "^3.0.3",
86-
"viem": "2.0.0-alpha.11",
82+
"viem": "2.0.0-alpha.12",
8783
"zod": "^3.22.2"
8884
},
8985
"devDependencies": {
@@ -92,21 +88,12 @@
9288
"fixturez": "^1.1.0",
9389
"msw": "^1.3.1"
9490
},
95-
"contributors": [
96-
"awkweb.eth <[email protected]>",
97-
"jxom.eth <[email protected]>"
98-
],
91+
"contributors": ["awkweb.eth <[email protected]>", "jxom.eth <[email protected]>"],
9992
"funding": [
10093
{
10194
"type": "github",
10295
"url": "https://github.com/sponsors/wagmi-dev"
10396
}
10497
],
105-
"keywords": [
106-
"eth",
107-
"ethereum",
108-
"dapps",
109-
"wallet",
110-
"web3"
111-
]
98+
"keywords": ["eth", "ethereum", "dapps", "wallet", "web3"]
11299
}

packages/cli/src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '2.0.0-alpha.4'
1+
export const version = '2.0.0-alpha.5'

packages/connectors/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@wagmi/connectors",
33
"description": "Collection of connectors for Wagmi",
4-
"version": "4.0.0-alpha.4",
4+
"version": "4.0.0-alpha.5",
55
"license": "MIT",
66
"repository": {
77
"type": "git",
@@ -37,7 +37,7 @@
3737
"peerDependencies": {
3838
"@wagmi/core": "workspace:*",
3939
"typescript": ">=5",
40-
"viem": "2.0.0-alpha.11"
40+
"viem": "2.0.0-alpha.12"
4141
},
4242
"peerDependenciesMeta": {
4343
"typescript": {

packages/connectors/src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '4.0.0-alpha.4'
1+
export const version = '4.0.0-alpha.5'

packages/core/package.json

+8-25
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@wagmi/core",
33
"description": "VanillaJS library for Ethereum",
4-
"version": "2.0.0-alpha.4",
4+
"version": "2.0.0-alpha.5",
55
"license": "MIT",
66
"repository": {
77
"type": "git",
@@ -56,24 +56,16 @@
5656
},
5757
"typesVersions": {
5858
"*": {
59-
"actions": [
60-
"./dist/types/exports/actions.d.ts"
61-
],
62-
"chains": [
63-
"./dist/types/exports/chains.d.ts"
64-
],
65-
"internal": [
66-
"./dist/types/exports/internal.d.ts"
67-
],
68-
"query": [
69-
"./dist/types/exports/query.d.ts"
70-
]
59+
"actions": ["./dist/types/exports/actions.d.ts"],
60+
"chains": ["./dist/types/exports/chains.d.ts"],
61+
"internal": ["./dist/types/exports/internal.d.ts"],
62+
"query": ["./dist/types/exports/query.d.ts"]
7163
}
7264
},
7365
"peerDependencies": {
7466
"@tanstack/query-core": ">5.0.0-beta.28",
7567
"typescript": ">=5",
76-
"viem": "2.0.0-alpha.11"
68+
"viem": "2.0.0-alpha.12"
7769
},
7870
"peerDependenciesMeta": {
7971
"@tanstack/query-core": {
@@ -91,21 +83,12 @@
9183
"devDependencies": {
9284
"@tanstack/query-core": "5.0.0-beta.28"
9385
},
94-
"contributors": [
95-
"awkweb.eth <[email protected]>",
96-
"jxom.eth <[email protected]>"
97-
],
86+
"contributors": ["awkweb.eth <[email protected]>", "jxom.eth <[email protected]>"],
9887
"funding": [
9988
{
10089
"type": "github",
10190
"url": "https://github.com/sponsors/wagmi-dev"
10291
}
10392
],
104-
"keywords": [
105-
"eth",
106-
"ethereum",
107-
"dapps",
108-
"wallet",
109-
"web3"
110-
]
93+
"keywords": ["eth", "ethereum", "dapps", "wallet", "web3"]
11194
}

packages/core/src/actions/connect.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ test('behavior: user rejected request', async () => {
5757
[UserRejectedRequestError: User rejected the request.
5858
5959
Details: Failed to connect.
60-
Version: [email protected].11]
60+
Version: [email protected].12]
6161
`)
6262
})
6363

packages/core/src/actions/getToken.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,6 @@ test('behavior: bogus token', async () => {
7979
function: decimals()
8080
8181
Docs: https://viem.sh/docs/contract/multicall.html
82-
Version: [email protected].11"
82+
Version: [email protected].12"
8383
`)
8484
})

packages/core/src/actions/readContracts.test.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ test('throws if allowFailure=false & a contract method fails', async () => {
397397
args: (0xA0Cf798816D4b9b9866b5330EEa46a18382f251e, 69420)
398398
399399
Docs: https://viem.sh/docs/contract/readContract.html
400-
Version: [email protected].11"
400+
Version: [email protected].12"
401401
`,
402402
)
403403
})
@@ -450,7 +450,7 @@ test('allowFailure=true & a contract method fails', async () => {
450450
args: (0xA0Cf798816D4b9b9866b5330EEa46a18382f251e, 69420)
451451
452452
Docs: https://viem.sh/docs/contract/readContract.html
453-
Version: [email protected].11],
453+
Version: [email protected].12],
454454
"result": undefined,
455455
"status": "failure",
456456
},
@@ -464,7 +464,7 @@ test('allowFailure=true & a contract method fails', async () => {
464464
args: (0xA0Cf798816D4b9b9866b5330EEa46a18382f251e, 69421)
465465
466466
Docs: https://viem.sh/docs/contract/readContract.html
467-
Version: [email protected].11],
467+
Version: [email protected].12],
468468
"result": undefined,
469469
"status": "failure",
470470
},
@@ -502,7 +502,7 @@ test('throws if allowFailure=false & encoding contract function data fails', asy
502502
args: (1e+31)
503503
504504
Docs: https://viem.sh/docs/contract/readContract.html
505-
Version: [email protected].11"
505+
Version: [email protected].12"
506506
`,
507507
)
508508
})
@@ -561,7 +561,7 @@ test('allowFailure=true & encoding contract function data fails', async () => {
561561
args: (1e+31)
562562
563563
Docs: https://viem.sh/docs/contract/readContract.html
564-
Version: [email protected].11],
564+
Version: [email protected].12],
565565
"result": undefined,
566566
"status": "failure",
567567
},
@@ -579,7 +579,7 @@ test('allowFailure=true & encoding contract function data fails', async () => {
579579
args: (1e+31)
580580
581581
Docs: https://viem.sh/docs/contract/readContract.html
582-
Version: [email protected].11],
582+
Version: [email protected].12],
583583
"result": undefined,
584584
"status": "failure",
585585
},
@@ -617,7 +617,7 @@ test('should throw if allowFailure=false & a contract has no response', async ()
617617
args: (0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC)
618618
619619
Docs: https://viem.sh/docs/contract/readContract.html
620-
Version: [email protected].11"
620+
Version: [email protected].12"
621621
`,
622622
)
623623
})
@@ -669,7 +669,7 @@ test('allowFailure=true & a contract has no response', async () => {
669669
args: (0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC)
670670
671671
Docs: https://viem.sh/docs/contract/readContract.html
672-
Version: [email protected].11],
672+
Version: [email protected].12],
673673
"result": undefined,
674674
"status": "failure",
675675
},

packages/core/src/actions/signMessage.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ test('behavior: user rejected request', async () => {
3636
[UserRejectedRequestError: User rejected the request.
3737
3838
Details: Failed to sign message.
39-
Version: [email protected].11]
39+
Version: [email protected].12]
4040
`)
4141
await disconnect(config, { connector: connector_ })
4242
})

packages/core/src/actions/signTypedData.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ test('behavior: user rejected request', async () => {
4646
[UserRejectedRequestError: User rejected the request.
4747
4848
Details: Failed to sign typed data.
49-
Version: [email protected].11]
49+
Version: [email protected].12]
5050
`)
5151
await disconnect(config, { connector: connector_ })
5252
})

packages/core/src/actions/switchChain.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ test('behavior: user rejected request', async () => {
4343
[UserRejectedRequestError: User rejected the request.
4444
4545
Details: Failed to switch chain.
46-
Version: [email protected].11]
46+
Version: [email protected].12]
4747
`)
4848
await disconnect(config, { connector: connector_ })
4949
})

packages/core/src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '2.0.0-alpha.4'
1+
export const version = '2.0.0-alpha.5'

packages/react/package.json

+8-27
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "wagmi",
33
"description": "React Hooks for Ethereum",
4-
"version": "2.0.0-alpha.4",
4+
"version": "2.0.0-alpha.5",
55
"license": "MIT",
66
"repository": {
77
"type": "git",
@@ -56,25 +56,17 @@
5656
},
5757
"typesVersions": {
5858
"*": {
59-
"actions": [
60-
"./dist/types/exports/actions.d.ts"
61-
],
62-
"chains": [
63-
"./dist/types/exports/chains.d.ts"
64-
],
65-
"connectors": [
66-
"./dist/types/exports/connectors.d.ts"
67-
],
68-
"query": [
69-
"./dist/types/exports/query.d.ts"
70-
]
59+
"actions": ["./dist/types/exports/actions.d.ts"],
60+
"chains": ["./dist/types/exports/chains.d.ts"],
61+
"connectors": ["./dist/types/exports/connectors.d.ts"],
62+
"query": ["./dist/types/exports/query.d.ts"]
7163
}
7264
},
7365
"peerDependencies": {
7466
"@tanstack/react-query": ">5.0.0-beta.28",
7567
"react": ">=18",
7668
"typescript": ">=5",
77-
"viem": "2.0.0-alpha.11"
69+
"viem": "2.0.0-alpha.12"
7870
},
7971
"peerDependenciesMeta": {
8072
"typescript": {
@@ -95,23 +87,12 @@
9587
"react": "^18.2.0",
9688
"react-dom": "^18.2.0"
9789
},
98-
"contributors": [
99-
"awkweb.eth <[email protected]>",
100-
"jxom.eth <[email protected]>"
101-
],
90+
"contributors": ["awkweb.eth <[email protected]>", "jxom.eth <[email protected]>"],
10291
"funding": [
10392
{
10493
"type": "github",
10594
"url": "https://github.com/sponsors/wagmi-dev"
10695
}
10796
],
108-
"keywords": [
109-
"react",
110-
"hooks",
111-
"eth",
112-
"ethereum",
113-
"dapps",
114-
"wallet",
115-
"web3"
116-
]
97+
"keywords": ["react", "hooks", "eth", "ethereum", "dapps", "wallet", "web3"]
11798
}

packages/react/src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '2.0.0-alpha.4'
1+
export const version = '2.0.0-alpha.5'

packages/register-tests/react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dependencies": {
99
"@tanstack/react-query": "5.0.0-beta.28",
1010
"react": "^18.2.0",
11-
"viem": "2.0.0-alpha.11",
11+
"viem": "2.0.0-alpha.12",
1212
"wagmi": "workspace:*"
1313
},
1414
"devDependencies": {

packages/test/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"react": ">=18",
5555
"react-dom": ">=18",
5656
"typescript": ">=5",
57-
"viem": "2.0.0-alpha.11",
57+
"viem": "2.0.0-alpha.12",
5858
"wagmi": "workspace:*"
5959
},
6060
"peerDependenciesMeta": {

0 commit comments

Comments
 (0)