Skip to content

Commit

Permalink
chore: version package (#2412)
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 Jun 15, 2024
1 parent f592459 commit 53b1380
Show file tree
Hide file tree
Showing 7 changed files with 89 additions and 50 deletions.
5 changes: 0 additions & 5 deletions .changeset/three-dogs-run.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/young-pants-draw.md

This file was deleted.

40 changes: 20 additions & 20 deletions pnpm-lock.yaml

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

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.14.1

### Patch Changes

- [#2411](https://github.com/wevm/viem/pull/2411) [`2fc14e50`](https://github.com/wevm/viem/commit/2fc14e50df3d6796cd29add44d0467320cb06195) Thanks [@tmm](https://github.com/tmm)! - Deprecated `getBytecode` (use `getCode` instead).

- [#2408](https://github.com/wevm/viem/pull/2408) [`21cb684a`](https://github.com/wevm/viem/commit/21cb684a6e41fc65ac0f15c0ee08df296f2b1a15) Thanks [@jxom](https://github.com/jxom)! - Added `code` as a parameter to `call` + `readContract` – to enable [Deployless Calls via Bytecode](https://viem.sh/docs/actions/public/call#bytecode).

## 2.14.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.14.0'
export const version = '2.14.1'
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.14.0",
"version": "2.14.1",
"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"
]
}
}
}
68 changes: 52 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.14.0",
"version": "2.14.1",
"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,22 @@
"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", "typescript"]
"keywords": [
"eth",
"ethereum",
"dapps",
"wallet",
"web3",
"typescript"
]
}

0 comments on commit 53b1380

Please sign in to comment.