diff --git a/.changeset/shiny-houses-poke.md b/.changeset/shiny-houses-poke.md deleted file mode 100644 index 868b2f29..00000000 --- a/.changeset/shiny-houses-poke.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"abitype": patch ---- - -Fixed bug where type instantiation is excessively deep and possibly infinite when using `formatAbiParameter` with `exactOptionalPropertyTypes` set to `false`. diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d62d7ee..37e995c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # abitype +## 0.9.3 + +### Patch Changes + +- [#170](https://github.com/wagmi-dev/abitype/pull/170) [`dbe16a2`](https://github.com/wagmi-dev/abitype/commit/dbe16a272c769ede7cd3539795e833b69b785387) Thanks [@Raiden1411](https://github.com/Raiden1411)! - Fixed bug where type instantiation is excessively deep and possibly infinite when using `formatAbiParameter` with `exactOptionalPropertyTypes` set to `false`. + ## 0.9.2 ### Patch Changes diff --git a/package.json b/package.json index 436c9c86..80a36696 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "abitype", "description": "Strict TypeScript types for Ethereum ABIs", - "version": "0.9.2", + "version": "0.9.3", "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.20.6" }, - "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 d3ac3a12..01e36bae 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const version = '0.9.2' +export const version = '0.9.3'