Skip to content

Commit

Permalink
chore: version packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 26, 2023
1 parent 02ae52e commit 67758c2
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 13 deletions.
5 changes: 0 additions & 5 deletions .changeset/tricky-foxes-end.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# abitype

## 0.8.5

### Patch Changes

- [#144](https://github.com/wagmi-dev/abitype/pull/144) [`02ae52e`](https://github.com/wagmi-dev/abitype/commit/02ae52ea465df4c4682987f7a5ecc84a88c9b9cc) Thanks [@tmm](https://github.com/tmm)! - Fixed package.json Zod entrypoint ESM path.

## 0.8.4

### Patch Changes
Expand Down
31 changes: 24 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "abitype",
"description": "Strict TypeScript types for Ethereum ABIs",
"version": "0.8.4",
"version": "0.8.5",
"license": "MIT",
"repository": "wagmi-dev/abitype",
"scripts": {
Expand Down Expand Up @@ -70,9 +70,15 @@
},
"typesVersions": {
"*": {
"config": ["./dist/types/config.d.ts"],
"test": ["./dist/types/test/index.d.ts"],
"zod": ["./dist/types/zod/index.d.ts"]
"config": [
"./dist/types/config.d.ts"
],
"test": [
"./dist/types/test/index.d.ts"
],
"zod": [
"./dist/types/zod/index.d.ts"
]
}
},
"peerDependencies": {
Expand Down Expand Up @@ -101,14 +107,23 @@
"vitest": "^0.30.1",
"zod": "^3.20.6"
},
"contributors": ["jxom.eth <j@wagmi.sh>", "awkweb.eth <t@wagmi.sh>"],
"contributors": [
"jxom.eth <j@wagmi.sh>",
"awkweb.eth <t@wagmi.sh>"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/wagmi-dev"
}
],
"keywords": ["abi", "eth", "ethereum", "typescript", "web3"],
"keywords": [
"abi",
"eth",
"ethereum",
"typescript",
"web3"
],
"simple-git-hooks": {
"pre-commit": "pnpm format && pnpm lint:fix"
},
Expand All @@ -119,7 +134,9 @@
"shiki-twoslash>shiki": "^0.14.1"
},
"peerDependencyRules": {
"ignoreMissing": ["@algolia/client-search"]
"ignoreMissing": [
"@algolia/client-search"
]
}
}
}
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '0.8.4'
export const version = '0.8.5'

0 comments on commit 67758c2

Please sign in to comment.