diff --git a/.changeset/stale-dryers-sparkle.md b/.changeset/stale-dryers-sparkle.md deleted file mode 100644 index 50f75e6b3d..0000000000 --- a/.changeset/stale-dryers-sparkle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"viem": patch ---- - -Improved `.extend` performance with `publicActions` and other large types. diff --git a/.changeset/warm-radios-glow.md b/.changeset/warm-radios-glow.md deleted file mode 100644 index 6b0cbc3808..0000000000 --- a/.changeset/warm-radios-glow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"viem": patch ---- - -Exported `DecodeFunctionDataReturnType` type. diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index 9a8b3c2454..456728c5e8 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,5 +1,13 @@ # viem +## 2.13.2 + +### Patch Changes + +- [#2328](https://github.com/wevm/viem/pull/2328) [`d946d55b8431b255c4cdc2d20e413f9064e7513a`](https://github.com/wevm/viem/commit/d946d55b8431b255c4cdc2d20e413f9064e7513a) Thanks [@tmm](https://github.com/tmm)! - Improved `.extend` performance with `publicActions` and other large types. + +- [#2329](https://github.com/wevm/viem/pull/2329) [`db85cc6bc9b29349b1eb077ebb6ea2a248bb5794`](https://github.com/wevm/viem/commit/db85cc6bc9b29349b1eb077ebb6ea2a248bb5794) Thanks [@abs3ntdev](https://github.com/abs3ntdev)! - Exported `DecodeFunctionDataReturnType` type. + ## 2.13.1 ### Patch Changes diff --git a/src/errors/version.ts b/src/errors/version.ts index 6996b71dce..19e4a2167f 100644 --- a/src/errors/version.ts +++ b/src/errors/version.ts @@ -1 +1 @@ -export const version = '2.13.1' +export const version = '2.13.2' diff --git a/src/jsr.json b/src/jsr.json index 1b3bd577dd..98c046c9ad 100644 --- a/src/jsr.json +++ b/src/jsr.json @@ -1,6 +1,6 @@ { "name": "@wevm/viem", - "version": "2.13.1", + "version": "2.13.2", "exports": { ".": "./index.ts", "./accounts": "./accounts/index.ts", @@ -16,7 +16,12 @@ "./zksync": "./zksync/index.ts" }, "publish": { - "include": ["LICENSE", "README.md", "CHANGELOG.md", "**/*.ts"], + "include": [ + "LICENSE", + "README.md", + "CHANGELOG.md", + "**/*.ts" + ], "exclude": [ "**/*.bench.ts", "**/*.bench-d.ts", @@ -24,4 +29,4 @@ "**/*.test-d.ts" ] } -} +} \ No newline at end of file diff --git a/src/package.json b/src/package.json index a6e342f035..9f7675741a 100644 --- a/src/package.json +++ b/src/package.json @@ -1,7 +1,7 @@ { "name": "viem", "description": "TypeScript Interface for Ethereum", - "version": "2.13.1", + "version": "2.13.2", "type": "module", "main": "./_cjs/index.js", "module": "./_esm/index.js", @@ -94,19 +94,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": { @@ -130,12 +156,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" + ] }