Skip to content

Commit

Permalink
chore: version package (#2300)
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 23, 2024
1 parent efb77bf commit 69c1d45
Show file tree
Hide file tree
Showing 9 changed files with 79 additions and 46 deletions.
5 changes: 0 additions & 5 deletions .changeset/chatty-flies-tan.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/few-hounds-appear.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/heavy-berries-watch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/new-news-deny.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/selfish-horses-happen.md

This file was deleted.

14 changes: 14 additions & 0 deletions src/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# viem

## 2.12.1

### Patch Changes

- [#2299](https://github.com/wevm/viem/pull/2299) [`144d90e09231cdbb105c95b0b52332cd1a97bbbb`](https://github.com/wevm/viem/commit/144d90e09231cdbb105c95b0b52332cd1a97bbbb) Thanks [@tmm](https://github.com/tmm)! - Fixed `createSiweMessage` `domain` validation.

- [#2292](https://github.com/wevm/viem/pull/2292) [`176a9e7bae90285401878cfeb54c09a7f7d8881b`](https://github.com/wevm/viem/commit/176a9e7bae90285401878cfeb54c09a7f7d8881b) Thanks [@nidz-the-fact](https://github.com/nidz-the-fact)! - Fixed `thaiChain` RPC URL.

- [#2298](https://github.com/wevm/viem/pull/2298) [`601cb741f7ba526c5441ab3fe6a485d283b85fd1`](https://github.com/wevm/viem/commit/601cb741f7ba526c5441ab3fe6a485d283b85fd1) Thanks [@tmm](https://github.com/tmm)! - Fixed support for ESM for 4337 trusted setups.

- [#2301](https://github.com/wevm/viem/pull/2301) [`36c55da99111714bfda5b55d5e855cc8c4a121d9`](https://github.com/wevm/viem/commit/36c55da99111714bfda5b55d5e855cc8c4a121d9) Thanks [@jxom](https://github.com/jxom)! - Fixed `isAddress` cache.

- [#2296](https://github.com/wevm/viem/pull/2296) [`efb77bf2dd201caad6d538767cd04790f42892a0`](https://github.com/wevm/viem/commit/efb77bf2dd201caad6d538767cd04790f42892a0) Thanks [@JackHamer09](https://github.com/JackHamer09)! - Added `native` explorers for zkSync and zkSync Sepolia Testnet chains.

## 2.12.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion src/errors/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '2.12.0'
export const version = '2.12.1'
17 changes: 13 additions & 4 deletions src/jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wevm/viem",
"version": "2.12.0",
"version": "2.12.1",
"exports": {
".": "./index.ts",
"./accounts": "./accounts/index.ts",
Expand All @@ -16,7 +16,16 @@
"./zksync": "./zksync/index.ts"
},
"publish": {
"include": ["LICENSE", "README.md", "CHANGELOG.md", "**/*.ts"],
"exclude": ["**/*.bench.ts", "**/*.test.ts", "**/*.test-d.ts"]
"include": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"**/*.ts"
],
"exclude": [
"**/*.bench.ts",
"**/*.test.ts",
"**/*.test-d.ts"
]
}
}
}
67 changes: 51 additions & 16 deletions src/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "viem",
"description": "TypeScript Interface for Ethereum",
"version": "2.12.0",
"version": "2.12.1",
"type": "module",
"main": "./_cjs/index.js",
"module": "./_esm/index.js",
Expand Down Expand Up @@ -93,19 +93,45 @@
},
"typesVersions": {
"*": {
"accounts": ["./_types/accounts/index.d.ts"],
"actions": ["./_types/actions/index.d.ts"],
"celo": ["./_types/celo/index.d.ts"],
"chains": ["./_types/chains/index.d.ts"],
"chains/utils": ["./_types/chains/utils.d.ts"],
"ens": ["./_types/ens/index.d.ts"],
"experimental": ["./_types/experimental/index.d.ts"],
"node": ["./_types/node/index.d.ts"],
"op-stack": ["./_types/op-stack/index.d.ts"],
"siwe": ["./_types/siwe/index.d.ts"],
"utils": ["./_types/utils/index.d.ts"],
"window": ["./_types/window/index.d.ts"],
"zksync": ["./_types/zksync/index.d.ts"]
"accounts": [
"./_types/accounts/index.d.ts"
],
"actions": [
"./_types/actions/index.d.ts"
],
"celo": [
"./_types/celo/index.d.ts"
],
"chains": [
"./_types/chains/index.d.ts"
],
"chains/utils": [
"./_types/chains/utils.d.ts"
],
"ens": [
"./_types/ens/index.d.ts"
],
"experimental": [
"./_types/experimental/index.d.ts"
],
"node": [
"./_types/node/index.d.ts"
],
"op-stack": [
"./_types/op-stack/index.d.ts"
],
"siwe": [
"./_types/siwe/index.d.ts"
],
"utils": [
"./_types/utils/index.d.ts"
],
"window": [
"./_types/window/index.d.ts"
],
"zksync": [
"./_types/zksync/index.d.ts"
]
}
},
"peerDependencies": {
Expand All @@ -129,12 +155,21 @@
"license": "MIT",
"homepage": "https://viem.sh",
"repository": "wevm/viem",
"authors": ["awkweb.eth", "jxom.eth"],
"authors": [
"awkweb.eth",
"jxom.eth"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/wevm"
}
],
"keywords": ["eth", "ethereum", "dapps", "wallet", "web3"]
"keywords": [
"eth",
"ethereum",
"dapps",
"wallet",
"web3"
]
}

0 comments on commit 69c1d45

Please sign in to comment.