Skip to content

Commit

Permalink
chore: version packages (#4035)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Jun 11, 2024
1 parent 2d5e1a9 commit 6cd72d0
Show file tree
Hide file tree
Showing 20 changed files with 160 additions and 60 deletions.
5 changes: 0 additions & 5 deletions .changeset/breezy-bananas-cheer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fresh-pianos-prove.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/funny-colts-cough.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sweet-berries-invite.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @wagmi/cli

## 2.1.9

### Patch Changes

- [`f9346dbcffaf57a8949cb96e43df111a89d733b1`](https://github.com/wevm/wagmi/commit/f9346dbcffaf57a8949cb96e43df111a89d733b1) Thanks [@tmm](https://github.com/tmm)! - Updated Foundry plugin default excludes.

## 2.1.8

### Patch Changes
Expand Down
25 changes: 20 additions & 5 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@wagmi/cli",
"description": "Manage and generate code from Ethereum ABIs",
"version": "2.1.8",
"version": "2.1.9",
"license": "MIT",
"repository": {
"type": "git",
Expand Down Expand Up @@ -50,8 +50,12 @@
},
"typesVersions": {
"*": {
"config": ["./dist/types/exports/config.d.ts"],
"plugins": ["./dist/types/exports/plugins.d.ts"]
"config": [
"./dist/types/exports/config.d.ts"
],
"plugins": [
"./dist/types/exports/plugins.d.ts"
]
}
},
"peerDependencies": {
Expand Down Expand Up @@ -90,7 +94,18 @@
"fixturez": "^1.1.0",
"msw": "^2.2.14"
},
"contributors": ["awkweb.eth <t@wevm.dev>", "jxom.eth <j@wevm.dev>"],
"contributors": [
"awkweb.eth <t@wevm.dev>",
"jxom.eth <j@wevm.dev>"
],
"funding": "https://github.com/sponsors/wevm",
"keywords": ["wagmi", "eth", "ethereum", "dapps", "wallet", "web3", "cli"]
"keywords": [
"wagmi",
"eth",
"ethereum",
"dapps",
"wallet",
"web3",
"cli"
]
}
2 changes: 1 addition & 1 deletion packages/cli/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '2.1.8'
export const version = '2.1.9'
9 changes: 9 additions & 0 deletions packages/connectors/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @wagmi/connectors

## 5.0.11

### Patch Changes

- [#4020](https://github.com/wevm/wagmi/pull/4020) [`e3b124ce414b8fd1b2214e2c5a28dc72158a13d1`](https://github.com/wevm/wagmi/commit/e3b124ce414b8fd1b2214e2c5a28dc72158a13d1) Thanks [@tmm](https://github.com/tmm)! - Added reconnection support to `metaMask` on mobile and use deeplinks by default.

- Updated dependencies [[`f2a7cefab96691ebed8b8e45ffde071c47b58dbe`](https://github.com/wevm/wagmi/commit/f2a7cefab96691ebed8b8e45ffde071c47b58dbe), [`f0ea0b2a7fe193dadfeb49a4c8031ee451c638b5`](https://github.com/wevm/wagmi/commit/f0ea0b2a7fe193dadfeb49a4c8031ee451c638b5)]:
- @wagmi/core@2.10.6

## 5.0.10

### Patch Changes
Expand Down
7 changes: 5 additions & 2 deletions packages/connectors/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@wagmi/connectors",
"description": "Collection of connectors for Wagmi",
"version": "5.0.10",
"version": "5.0.11",
"license": "MIT",
"repository": {
"type": "git",
Expand Down Expand Up @@ -57,7 +57,10 @@
"@wagmi/core": "workspace:*",
"msw": "^2.2.14"
},
"contributors": ["awkweb.eth <t@wevm.dev>", "jxom.eth <j@wevm.dev>"],
"contributors": [
"awkweb.eth <t@wevm.dev>",
"jxom.eth <j@wevm.dev>"
],
"funding": "https://github.com/sponsors/wevm",
"keywords": [
"react",
Expand Down
2 changes: 1 addition & 1 deletion packages/connectors/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '5.0.10'
export const version = '5.0.11'
8 changes: 8 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @wagmi/core

## 2.10.6

### Patch Changes

- [#4009](https://github.com/wevm/wagmi/pull/4009) [`f2a7cefab96691ebed8b8e45ffde071c47b58dbe`](https://github.com/wevm/wagmi/commit/f2a7cefab96691ebed8b8e45ffde071c47b58dbe) Thanks [@roninjin10](https://github.com/roninjin10)! - Marked `to` as optional for `sendTransaction`.

- [#4023](https://github.com/wevm/wagmi/pull/4023) [`f0ea0b2a7fe193dadfeb49a4c8031ee451c638b5`](https://github.com/wevm/wagmi/commit/f0ea0b2a7fe193dadfeb49a4c8031ee451c638b5) Thanks [@jxom](https://github.com/jxom)! - Added chain check to `getConnectorClient` since it's possible for connection state chain ID to get out of sync with the connector (e.g. [wallet bug](https://github.com/MetaMask/metamask-extension/issues/25097)).

## 2.10.5

### Patch Changes
Expand Down
40 changes: 31 additions & 9 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@wagmi/core",
"description": "VanillaJS library for Ethereum",
"version": "2.10.5",
"version": "2.10.6",
"license": "MIT",
"repository": {
"type": "git",
Expand Down Expand Up @@ -65,12 +65,24 @@
},
"typesVersions": {
"*": {
"actions": ["./dist/types/exports/actions.d.ts"],
"chains": ["./dist/types/exports/chains.d.ts"],
"codegen": ["./dist/types/exports/codegen.d.ts"],
"experimental": ["./dist/types/exports/experimental.d.ts"],
"internal": ["./dist/types/exports/internal.d.ts"],
"query": ["./dist/types/exports/query.d.ts"]
"actions": [
"./dist/types/exports/actions.d.ts"
],
"chains": [
"./dist/types/exports/chains.d.ts"
],
"codegen": [
"./dist/types/exports/codegen.d.ts"
],
"experimental": [
"./dist/types/exports/experimental.d.ts"
],
"internal": [
"./dist/types/exports/internal.d.ts"
],
"query": [
"./dist/types/exports/query.d.ts"
]
}
},
"peerDependencies": {
Expand All @@ -94,7 +106,17 @@
"devDependencies": {
"@tanstack/query-core": ">=5.35.1"
},
"contributors": ["awkweb.eth <t@wevm.dev>", "jxom.eth <j@wevm.dev>"],
"contributors": [
"awkweb.eth <t@wevm.dev>",
"jxom.eth <j@wevm.dev>"
],
"funding": "https://github.com/sponsors/wevm",
"keywords": ["wagmi", "eth", "ethereum", "dapps", "wallet", "web3"]
"keywords": [
"wagmi",
"eth",
"ethereum",
"dapps",
"wallet",
"web3"
]
}
2 changes: 1 addition & 1 deletion packages/core/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '2.10.5'
export const version = '2.10.6'
8 changes: 8 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# wagmi

## 2.9.12

### Patch Changes

- Updated dependencies [[`f2a7cefab96691ebed8b8e45ffde071c47b58dbe`](https://github.com/wevm/wagmi/commit/f2a7cefab96691ebed8b8e45ffde071c47b58dbe), [`f0ea0b2a7fe193dadfeb49a4c8031ee451c638b5`](https://github.com/wevm/wagmi/commit/f0ea0b2a7fe193dadfeb49a4c8031ee451c638b5), [`e3b124ce414b8fd1b2214e2c5a28dc72158a13d1`](https://github.com/wevm/wagmi/commit/e3b124ce414b8fd1b2214e2c5a28dc72158a13d1)]:
- @wagmi/core@2.10.6
- @wagmi/connectors@5.0.11

## 2.9.11

### Patch Changes
Expand Down
31 changes: 23 additions & 8 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "wagmi",
"description": "React Hooks for Ethereum",
"version": "2.9.11",
"version": "2.9.12",
"license": "MIT",
"repository": {
"type": "git",
Expand Down Expand Up @@ -66,12 +66,24 @@
},
"typesVersions": {
"*": {
"actions": ["./dist/types/exports/actions.d.ts"],
"chains": ["./dist/types/exports/chains.d.ts"],
"codegen": ["./dist/types/exports/codegen.d.ts"],
"connectors": ["./dist/types/exports/connectors.d.ts"],
"experimental": ["./dist/types/exports/experimental.d.ts"],
"query": ["./dist/types/exports/query.d.ts"]
"actions": [
"./dist/types/exports/actions.d.ts"
],
"chains": [
"./dist/types/exports/chains.d.ts"
],
"codegen": [
"./dist/types/exports/codegen.d.ts"
],
"connectors": [
"./dist/types/exports/connectors.d.ts"
],
"experimental": [
"./dist/types/exports/experimental.d.ts"
],
"query": [
"./dist/types/exports/query.d.ts"
]
}
},
"peerDependencies": {
Expand Down Expand Up @@ -99,7 +111,10 @@
"react": ">=18.3.1",
"react-dom": ">=18.3.1"
},
"contributors": ["awkweb.eth <t@wevm.dev>", "jxom.eth <j@wevm.dev>"],
"contributors": [
"awkweb.eth <t@wevm.dev>",
"jxom.eth <j@wevm.dev>"
],
"funding": "https://github.com/sponsors/wevm",
"keywords": [
"wagmi",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '2.9.11'
export const version = '2.9.12'
21 changes: 17 additions & 4 deletions packages/test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,12 @@
},
"typesVersions": {
"*": {
"react": ["./dist/types/exports/react.d.ts"],
"vue": ["./dist/types/exports/vue.d.ts"]
"react": [
"./dist/types/exports/react.d.ts"
],
"vue": [
"./dist/types/exports/vue.d.ts"
]
}
},
"peerDependencies": {
Expand Down Expand Up @@ -111,7 +115,16 @@
"vue": ">=3.4.21",
"wagmi": "workspace:*"
},
"contributors": ["awkweb.eth <t@wevm.dev>", "jxom.eth <j@wevm.dev>"],
"contributors": [
"awkweb.eth <t@wevm.dev>",
"jxom.eth <j@wevm.dev>"
],
"funding": "https://github.com/sponsors/wevm",
"keywords": ["eth", "ethereum", "dapps", "wallet", "web3"]
"keywords": [
"eth",
"ethereum",
"dapps",
"wallet",
"web3"
]
}
8 changes: 8 additions & 0 deletions packages/vue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @wagmi/vue

## 0.0.15

### Patch Changes

- Updated dependencies [[`f2a7cefab96691ebed8b8e45ffde071c47b58dbe`](https://github.com/wevm/wagmi/commit/f2a7cefab96691ebed8b8e45ffde071c47b58dbe), [`f0ea0b2a7fe193dadfeb49a4c8031ee451c638b5`](https://github.com/wevm/wagmi/commit/f0ea0b2a7fe193dadfeb49a4c8031ee451c638b5), [`e3b124ce414b8fd1b2214e2c5a28dc72158a13d1`](https://github.com/wevm/wagmi/commit/e3b124ce414b8fd1b2214e2c5a28dc72158a13d1)]:
- @wagmi/core@2.10.6
- @wagmi/connectors@5.0.11

## 0.0.14

### Patch Changes
Expand Down
27 changes: 20 additions & 7 deletions packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@wagmi/vue",
"description": "Vue Composables for Ethereum",
"version": "0.0.14",
"version": "0.0.15",
"license": "MIT",
"repository": {
"type": "git",
Expand Down Expand Up @@ -61,11 +61,21 @@
},
"typesVersions": {
"*": {
"actions": ["./dist/types/exports/actions.d.ts"],
"chains": ["./dist/types/exports/chains.d.ts"],
"connectors": ["./dist/types/exports/connectors.d.ts"],
"nuxt": ["./dist/types/exports/nuxt.d.ts"],
"query": ["./dist/types/exports/query.d.ts"]
"actions": [
"./dist/types/exports/actions.d.ts"
],
"chains": [
"./dist/types/exports/chains.d.ts"
],
"connectors": [
"./dist/types/exports/connectors.d.ts"
],
"nuxt": [
"./dist/types/exports/nuxt.d.ts"
],
"query": [
"./dist/types/exports/query.d.ts"
]
}
},
"peerDependencies": {
Expand Down Expand Up @@ -95,7 +105,10 @@
"vue": ">=3.4.21",
"vue-tsc": "^2.0.6"
},
"contributors": ["awkweb.eth <t@wevm.dev>", "jxom.eth <j@wevm.dev>"],
"contributors": [
"awkweb.eth <t@wevm.dev>",
"jxom.eth <j@wevm.dev>"
],
"funding": "https://github.com/sponsors/wevm",
"keywords": [
"wagmi",
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '0.0.14'
export const version = '0.0.15'

0 comments on commit 6cd72d0

Please sign in to comment.