Skip to content

Commit 7fcc9b4

Browse files
chore: version package
1 parent 4cc270e commit 7fcc9b4

File tree

6 files changed

+87
-45
lines changed

6 files changed

+87
-45
lines changed

.changeset/forty-books-pump.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

pnpm-lock.yaml

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# viem
22

3+
## 2.13.8
4+
5+
### Patch Changes
6+
7+
- [#2375](https://github.com/wevm/viem/pull/2375) [`1d329882`](https://github.com/wevm/viem/commit/1d329882c6b37e722260a40c2745b8f0baa56bf9) Thanks [@ezynda3](https://github.com/ezynda3)! - Added API URL to `sei` chain.
8+
39
## 2.13.7
410

511
### Patch Changes

src/errors/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '2.13.7'
1+
export const version = '2.13.8'

src/jsr.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wevm/viem",
3-
"version": "2.13.7",
3+
"version": "2.13.8",
44
"exports": {
55
".": "./index.ts",
66
"./accounts": "./accounts/index.ts",
@@ -16,12 +16,17 @@
1616
"./zksync": "./zksync/index.ts"
1717
},
1818
"publish": {
19-
"include": ["LICENSE", "README.md", "CHANGELOG.md", "**/*.ts"],
19+
"include": [
20+
"LICENSE",
21+
"README.md",
22+
"CHANGELOG.md",
23+
"**/*.ts"
24+
],
2025
"exclude": [
2126
"**/*.bench.ts",
2227
"**/*.bench-d.ts",
2328
"**/*.test.ts",
2429
"**/*.test-d.ts"
2530
]
2631
}
27-
}
32+
}

src/package.json

Lines changed: 52 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "viem",
33
"description": "TypeScript Interface for Ethereum",
4-
"version": "2.13.7",
4+
"version": "2.13.8",
55
"type": "module",
66
"main": "./_cjs/index.js",
77
"module": "./_esm/index.js",
@@ -94,19 +94,45 @@
9494
},
9595
"typesVersions": {
9696
"*": {
97-
"accounts": ["./_types/accounts/index.d.ts"],
98-
"actions": ["./_types/actions/index.d.ts"],
99-
"celo": ["./_types/celo/index.d.ts"],
100-
"chains": ["./_types/chains/index.d.ts"],
101-
"chains/utils": ["./_types/chains/utils.d.ts"],
102-
"ens": ["./_types/ens/index.d.ts"],
103-
"experimental": ["./_types/experimental/index.d.ts"],
104-
"node": ["./_types/node/index.d.ts"],
105-
"op-stack": ["./_types/op-stack/index.d.ts"],
106-
"siwe": ["./_types/siwe/index.d.ts"],
107-
"utils": ["./_types/utils/index.d.ts"],
108-
"window": ["./_types/window/index.d.ts"],
109-
"zksync": ["./_types/zksync/index.d.ts"]
97+
"accounts": [
98+
"./_types/accounts/index.d.ts"
99+
],
100+
"actions": [
101+
"./_types/actions/index.d.ts"
102+
],
103+
"celo": [
104+
"./_types/celo/index.d.ts"
105+
],
106+
"chains": [
107+
"./_types/chains/index.d.ts"
108+
],
109+
"chains/utils": [
110+
"./_types/chains/utils.d.ts"
111+
],
112+
"ens": [
113+
"./_types/ens/index.d.ts"
114+
],
115+
"experimental": [
116+
"./_types/experimental/index.d.ts"
117+
],
118+
"node": [
119+
"./_types/node/index.d.ts"
120+
],
121+
"op-stack": [
122+
"./_types/op-stack/index.d.ts"
123+
],
124+
"siwe": [
125+
"./_types/siwe/index.d.ts"
126+
],
127+
"utils": [
128+
"./_types/utils/index.d.ts"
129+
],
130+
"window": [
131+
"./_types/window/index.d.ts"
132+
],
133+
"zksync": [
134+
"./_types/zksync/index.d.ts"
135+
]
110136
}
111137
},
112138
"peerDependencies": {
@@ -130,12 +156,22 @@
130156
"license": "MIT",
131157
"homepage": "https://viem.sh",
132158
"repository": "wevm/viem",
133-
"authors": ["awkweb.eth", "jxom.eth"],
159+
"authors": [
160+
"awkweb.eth",
161+
"jxom.eth"
162+
],
134163
"funding": [
135164
{
136165
"type": "github",
137166
"url": "https://github.com/sponsors/wevm"
138167
}
139168
],
140-
"keywords": ["eth", "ethereum", "dapps", "wallet", "web3", "typescript"]
169+
"keywords": [
170+
"eth",
171+
"ethereum",
172+
"dapps",
173+
"wallet",
174+
"web3",
175+
"typescript"
176+
]
141177
}

0 commit comments

Comments
 (0)