Skip to content

Commit

Permalink
chore: version package
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 29, 2024
1 parent d946d55 commit 3daca2a
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 30 deletions.
5 changes: 0 additions & 5 deletions .changeset/stale-dryers-sparkle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/warm-radios-glow.md

This file was deleted.

8 changes: 8 additions & 0 deletions src/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.13.1'
export const version = '2.13.2'
11 changes: 8 additions & 3 deletions src/jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wevm/viem",
"version": "2.13.1",
"version": "2.13.2",
"exports": {
".": "./index.ts",
"./accounts": "./accounts/index.ts",
Expand All @@ -16,12 +16,17 @@
"./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",
"**/*.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.13.1",
"version": "2.13.2",
"type": "module",
"main": "./_cjs/index.js",
"module": "./_esm/index.js",
Expand Down Expand Up @@ -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": {
Expand All @@ -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"
]
}

0 comments on commit 3daca2a

Please sign in to comment.