Skip to content

Commit

Permalink
chore: version packages (#3880)
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 May 2, 2024
1 parent b135cf4 commit 24a19f8
Show file tree
Hide file tree
Showing 10 changed files with 83 additions and 27 deletions.
6 changes: 0 additions & 6 deletions .changeset/nine-colts-clap.md

This file was deleted.

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

## 5.0.0

### Patch Changes

- Updated dependencies [[`017828fc`](https://github.com/wevm/wagmi/commit/017828fc027c7a84b54ea9d627e9389f4d60d6c2)]:
- @wagmi/core@2.9.0

## 4.3.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion 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": "4.3.1",
"version": "5.0.0",
"license": "MIT",
"repository": {
"type": "git",
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 = '4.3.1'
export const version = '5.0.0'
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @wagmi/core

## 2.9.0

### Minor Changes

- [#3878](https://github.com/wevm/wagmi/pull/3878) [`017828fc`](https://github.com/wevm/wagmi/commit/017828fc027c7a84b54ea9d627e9389f4d60d6c2) Thanks [@jxom](https://github.com/jxom)! - Added experimental EIP-5792 Actions & Hooks.

## 2.8.1

### 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.8.1",
"version": "2.9.0",
"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.0.0"
},
"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.8.1'
export const version = '2.9.0'
12 changes: 12 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# wagmi

## 2.8.0

### Minor Changes

- [#3878](https://github.com/wevm/wagmi/pull/3878) [`017828fc`](https://github.com/wevm/wagmi/commit/017828fc027c7a84b54ea9d627e9389f4d60d6c2) Thanks [@jxom](https://github.com/jxom)! - Added experimental EIP-5792 Actions & Hooks.

### Patch Changes

- Updated dependencies [[`017828fc`](https://github.com/wevm/wagmi/commit/017828fc027c7a84b54ea9d627e9389f4d60d6c2)]:
- @wagmi/core@2.9.0
- @wagmi/connectors@5.0.0

## 2.7.1

### 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.7.1",
"version": "2.8.0",
"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",
"react-dom": ">=18"
},
"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.7.1'
export const version = '2.8.0'

0 comments on commit 24a19f8

Please sign in to comment.