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 Aug 9, 2023
1 parent 6df4308 commit e0fd50d
Show file tree
Hide file tree
Showing 6 changed files with 73 additions and 43 deletions.
5 changes: 0 additions & 5 deletions .changeset/little-ravens-warn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swift-carpets-accept.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/twenty-apples-pull.md

This file was deleted.

24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# viem

## 1.6.0

### Minor Changes

- [#886](https://github.com/wagmi-dev/viem/pull/886) [`fef66bfb`](https://github.com/wagmi-dev/viem/commit/fef66bfbb9d0c9a94f3f607867738432bcbfef85) Thanks [@jxom](https://github.com/jxom)! - Added formatter for Optimism transaction receipts (format `l1GasPrice`, `l1GasUsed`, etc).

* [#886](https://github.com/wagmi-dev/viem/pull/886) [`fef66bfb`](https://github.com/wagmi-dev/viem/commit/fef66bfbb9d0c9a94f3f607867738432bcbfef85) Thanks [@jxom](https://github.com/jxom)! - Added entrypoints for chain utilities (`viem/chains/utils`) with exports for chain-specific chains, formatters, serializers, and types.

Examples:

```ts
import {
type CeloBlock,
type CeloTransaction,
type OptimismBlock,
type OptimismTransaction,
serializeTransactionCelo,
} from 'viem/chains/utils'
```

### Patch Changes

- [#1008](https://github.com/wagmi-dev/viem/pull/1008) [`9d93953f`](https://github.com/wagmi-dev/viem/commit/9d93953ffc66d70ccbe7e05862edfeadb1334a9e) Thanks [@holic](https://github.com/holic)! - Added `"already known"` as a node message matcher to `NonceTooLowError`.

## 1.5.4

### Patch Changes
Expand Down
63 changes: 48 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "viem",
"description": "TypeScript Interface for Ethereum",
"version": "1.5.4",
"version": "1.6.0",
"scripts": {
"bench": "vitest bench",
"bench:ci": "CI=true vitest bench",
Expand Down Expand Up @@ -116,17 +116,39 @@
},
"typesVersions": {
"*": {
"abi": ["./dist/types/abi.d.ts"],
"accounts": ["./dist/types/accounts/index.d.ts"],
"actions": ["./dist/types/actions/index.d.ts"],
"chains": ["./dist/types/chains.d.ts"],
"contract": ["./dist/types/contract.d.ts"],
"ens": ["./dist/types/ens.d.ts"],
"public": ["./dist/types/public.d.ts"],
"test": ["./dist/types/test.d.ts"],
"utils": ["./dist/types/utils/index.d.ts"],
"wallet": ["./dist/types/wallet.d.ts"],
"window": ["./dist/types/window.d.ts"]
"abi": [
"./dist/types/abi.d.ts"
],
"accounts": [
"./dist/types/accounts/index.d.ts"
],
"actions": [
"./dist/types/actions/index.d.ts"
],
"chains": [
"./dist/types/chains.d.ts"
],
"contract": [
"./dist/types/contract.d.ts"
],
"ens": [
"./dist/types/ens.d.ts"
],
"public": [
"./dist/types/public.d.ts"
],
"test": [
"./dist/types/test.d.ts"
],
"utils": [
"./dist/types/utils/index.d.ts"
],
"wallet": [
"./dist/types/wallet.d.ts"
],
"window": [
"./dist/types/window.d.ts"
]
}
},
"peerDependencies": {
Expand Down Expand Up @@ -174,14 +196,23 @@
},
"license": "MIT",
"repository": "wagmi-dev/viem",
"authors": ["awkweb.eth", "jxom.eth"],
"authors": [
"awkweb.eth",
"jxom.eth"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/wagmi-dev"
}
],
"keywords": ["eth", "ethereum", "dapps", "wallet", "web3"],
"keywords": [
"eth",
"ethereum",
"dapps",
"wallet",
"web3"
],
"size-limit": [
{
"name": "viem (cjs)",
Expand Down Expand Up @@ -234,7 +265,9 @@
"viem": "workspace:*"
},
"peerDependencyRules": {
"ignoreMissing": ["@algolia/client-search"]
"ignoreMissing": [
"@algolia/client-search"
]
},
"patchedDependencies": {
"vitepress@1.0.0-beta.4": "patches/vitepress@1.0.0-beta.4.patch"
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 = '1.5.4'
export const version = '1.6.0'

0 comments on commit e0fd50d

Please sign in to comment.