Skip to content

Commit

Permalink
Version Packages (#53)
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] authored Jan 8, 2022
1 parent da7a3a6 commit 583e25d
Show file tree
Hide file tree
Showing 11 changed files with 70 additions and 31 deletions.
16 changes: 0 additions & 16 deletions .changeset/fifty-toes-drive.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"nextra-theme-docs": "2.0.0-beta.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"wagmi": "0.0.17"
"wagmi": "0.1.0"
},
"devDependencies": {
"@types/node": "17.0.5",
Expand Down
2 changes: 1 addition & 1 deletion examples/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"wagmi": "0.0.17"
"wagmi": "0.1.0"
},
"devDependencies": {
"@preconstruct/next": "^3.0.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/vite-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"react": "^17.0.2",
"react-dom": "^17.0.2",
"util": "^0.12.4",
"wagmi": "0.0.17"
"wagmi": "0.1.0"
},
"devDependencies": {
"@types/react": "^17.0.33",
Expand Down
15 changes: 15 additions & 0 deletions packages/private/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# wagmi-private

## 0.1.0

### Minor Changes

- [#52](https://github.com/tmm/wagmi/pull/52) [`da7a3a6`](https://github.com/tmm/wagmi/commit/da7a3a615def2443f65c041999100ce35e9774cc) Thanks [@tmm](https://github.com/tmm)! - Moves connectors to their own entrypoints to reduce bundle size.

```ts
// old - WalletLinkConnector unused, but still in final bundle
import { InjectedConnector, WalletConnectConnector } from 'wagmi'

// new - WalletLinkConnector not in final bundle
import { InjectedConnector } from 'wagmi/connectors/injected'
import { WalletConnectConnector } from 'wagmi/connectors/walletConnect'
```

## 0.0.17

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/private/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "wagmi-private",
"license": "MIT",
"version": "0.0.17",
"version": "0.1.0",
"ethereum": "awkweb.eth",
"sideEffects": false,
"main": "dist/wagmi-private.cjs.js",
Expand Down
20 changes: 20 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# wagmi

## 0.1.0

### Minor Changes

- [#52](https://github.com/tmm/wagmi/pull/52) [`da7a3a6`](https://github.com/tmm/wagmi/commit/da7a3a615def2443f65c041999100ce35e9774cc) Thanks [@tmm](https://github.com/tmm)! - Moves connectors to their own entrypoints to reduce bundle size.

```ts
// old - WalletLinkConnector unused, but still in final bundle
import { InjectedConnector, WalletConnectConnector } from 'wagmi'

// new - WalletLinkConnector not in final bundle
import { InjectedConnector } from 'wagmi/connectors/injected'
import { WalletConnectConnector } from 'wagmi/connectors/walletConnect'
```

### Patch Changes

- Updated dependencies [[`da7a3a6`](https://github.com/tmm/wagmi/commit/da7a3a615def2443f65c041999100ce35e9774cc)]:
- wagmi-private@0.1.0

## 0.0.17

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "wagmi",
"description": "React Hooks library for Ethereum",
"license": "MIT",
"version": "0.0.17",
"version": "0.1.0",
"ethereum": "awkweb.eth",
"repository": "tmm/wagmi",
"homepage": "https://wagmi-xyz.vercel.app",
Expand Down Expand Up @@ -47,7 +47,7 @@
"dependencies": {
"@walletconnect/ethereum-provider": "^1.6.6",
"@ethersproject/providers": "^5.5.1",
"wagmi-private": "0.0.17",
"wagmi-private": "0.1.0",
"walletlink": "^2.2.8"
},
"devDependencies": {
Expand All @@ -57,6 +57,6 @@
"ethers": "^5.5.1",
"react": "^17.0.0",
"walletlink": "^2.2.8",
"wagmi-testing": "0.0.17"
"wagmi-testing": "0.1.0"
}
}
20 changes: 20 additions & 0 deletions packages/testing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# wagmi-testing

## 0.1.0

### Minor Changes

- [#52](https://github.com/tmm/wagmi/pull/52) [`da7a3a6`](https://github.com/tmm/wagmi/commit/da7a3a615def2443f65c041999100ce35e9774cc) Thanks [@tmm](https://github.com/tmm)! - Moves connectors to their own entrypoints to reduce bundle size.

```ts
// old - WalletLinkConnector unused, but still in final bundle
import { InjectedConnector, WalletConnectConnector } from 'wagmi'

// new - WalletLinkConnector not in final bundle
import { InjectedConnector } from 'wagmi/connectors/injected'
import { WalletConnectConnector } from 'wagmi/connectors/walletConnect'
```

### Patch Changes

- Updated dependencies [[`da7a3a6`](https://github.com/tmm/wagmi/commit/da7a3a615def2443f65c041999100ce35e9774cc)]:
- wagmi-private@0.1.0

## 0.0.17

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "wagmi-testing",
"description": "Testing utils for wagmi",
"license": "MIT",
"version": "0.0.17",
"version": "0.1.0",
"ethereum": "awkweb.eth",
"sideEffects": false,
"main": "dist/wagmi-testing.cjs.js",
Expand Down Expand Up @@ -30,7 +30,7 @@
"eventemitter3": "^4.0.7",
"msw": "^0.36.3",
"ts-pattern": "^3.3.4",
"wagmi-private": "0.0.17"
"wagmi-private": "0.1.0"
},
"devDependencies": {
"ethers": "^5.5.1"
Expand Down
12 changes: 6 additions & 6 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 comment on commit 583e25d

@vercel
Copy link

@vercel vercel bot commented on 583e25d Jan 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

Please sign in to comment.