diff --git a/.changeset/seven-planes-deliver.md b/.changeset/seven-planes-deliver.md deleted file mode 100644 index b11df3bb..00000000 --- a/.changeset/seven-planes-deliver.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"abitype": patch ---- - -Changed the following types to readonly in zod package: - -- `AbiContructor.inputs` -- `AbiError.inputs` -- `AbiEvent.inputs` -- `AbiFunction.inputs` / `AbiFunction.outputs` \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c6b6c53..2f41c7c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # abitype +## 0.9.10 + +### Patch Changes + +- [#194](https://github.com/wagmi-dev/abitype/pull/194) [`380c9d9`](https://github.com/wagmi-dev/abitype/commit/380c9d9786f673185369f652f3bde8564b30ff81) Thanks [@mathieu-bour](https://github.com/mathieu-bour)! - Changed the following types to readonly in zod package: + + - `AbiContructor.inputs` + - `AbiError.inputs` + - `AbiEvent.inputs` + - `AbiFunction.inputs` / `AbiFunction.outputs` + ## 0.9.9 ### Patch Changes diff --git a/package.json b/package.json index 7add2fe1..a5ebda15 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "abitype", "description": "Strict TypeScript types for Ethereum ABIs", - "version": "0.9.9", + "version": "0.9.10", "license": "MIT", "repository": "wagmi-dev/abitype", "scripts": { @@ -70,9 +70,15 @@ }, "typesVersions": { "*": { - "config": ["./dist/types/config.d.ts"], - "test": ["./dist/types/test.d.ts"], - "zod": ["./dist/types/zod.d.ts"] + "config": [ + "./dist/types/config.d.ts" + ], + "test": [ + "./dist/types/test.d.ts" + ], + "zod": [ + "./dist/types/zod.d.ts" + ] } }, "peerDependencies": { @@ -105,14 +111,23 @@ "vitest": "^0.30.1", "zod": "^3.22.4" }, - "contributors": ["jxom.eth ", "awkweb.eth "], + "contributors": [ + "jxom.eth ", + "awkweb.eth " + ], "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" }, @@ -123,7 +138,9 @@ "shiki-twoslash>shiki": "^0.14.1" }, "peerDependencyRules": { - "ignoreMissing": ["@algolia/client-search"] + "ignoreMissing": [ + "@algolia/client-search" + ] } } } diff --git a/src/version.ts b/src/version.ts index 3741cf7d..03ce6ed5 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const version = '0.9.9' +export const version = '0.9.10'