From 4c507b368efc6dabbf96ea4b7da867aad1059035 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 16:21:11 -0500 Subject: [PATCH] chore: version packages (#260) Co-authored-by: github-actions[bot] --- .changeset/flat-doors-shout.md | 5 ----- .changeset/rich-turtles-film.md | 5 ----- .changeset/shiny-kiwis-smash.md | 5 ----- packages/abitype/CHANGELOG.md | 10 ++++++++++ packages/abitype/jsr.json | 11 +++-------- packages/abitype/package.json | 2 +- packages/abitype/src/version.ts | 2 +- 7 files changed, 15 insertions(+), 25 deletions(-) delete mode 100644 .changeset/flat-doors-shout.md delete mode 100644 .changeset/rich-turtles-film.md delete mode 100644 .changeset/shiny-kiwis-smash.md diff --git a/.changeset/flat-doors-shout.md b/.changeset/flat-doors-shout.md deleted file mode 100644 index 55193735..00000000 --- a/.changeset/flat-doors-shout.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"abitype": patch ---- - -Fixed `parseAbi` caching for structs. diff --git a/.changeset/rich-turtles-film.md b/.changeset/rich-turtles-film.md deleted file mode 100644 index 39185444..00000000 --- a/.changeset/rich-turtles-film.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"abitype": patch ---- - -Fixed `formatAbiItem` fallback item formatting. diff --git a/.changeset/shiny-kiwis-smash.md b/.changeset/shiny-kiwis-smash.md deleted file mode 100644 index c47e81f4..00000000 --- a/.changeset/shiny-kiwis-smash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"abitype": patch ---- - -Updated `TypedDataDomain` `chainId` to support `uint256` values via `bigint`. diff --git a/packages/abitype/CHANGELOG.md b/packages/abitype/CHANGELOG.md index 624f5e49..02ebb4a0 100644 --- a/packages/abitype/CHANGELOG.md +++ b/packages/abitype/CHANGELOG.md @@ -1,5 +1,15 @@ # abitype +## 1.0.7 + +### Patch Changes + +- [`20cb1fd`](https://github.com/wevm/abitype/commit/20cb1fd23689d659d7547444a3b3aa4c829530c3) Thanks [@tmm](https://github.com/tmm)! - Fixed `parseAbi` caching for structs. + +- [#259](https://github.com/wevm/abitype/pull/259) [`f417a23`](https://github.com/wevm/abitype/commit/f417a2305c055014bc9147a033d983b5d0f0c318) Thanks [@KedziaPawel](https://github.com/KedziaPawel)! - Fixed `formatAbiItem` fallback item formatting. + +- [#257](https://github.com/wevm/abitype/pull/257) [`ee60e67`](https://github.com/wevm/abitype/commit/ee60e674458824fccfd22874a8815075cc5b269a) Thanks [@freemanzMrojo](https://github.com/freemanzMrojo)! - Updated `TypedDataDomain` `chainId` to support `uint256` values via `bigint`. + ## 1.0.6 ### Patch Changes diff --git a/packages/abitype/jsr.json b/packages/abitype/jsr.json index d15a98e9..c0de6748 100644 --- a/packages/abitype/jsr.json +++ b/packages/abitype/jsr.json @@ -1,6 +1,6 @@ { "name": "@wevm/abitype", - "version": "1.0.6", + "version": "1.0.7", "license": "MIT", "exports": { ".": "./src/exports/index.ts", @@ -8,12 +8,7 @@ "./zod": "./src/exports/zod.ts" }, "publish": { - "include": [ - "LICENSE", - "README.md", - "CHANGELOG.md", - "src/**/*.ts" - ], + "include": ["LICENSE", "README.md", "CHANGELOG.md", "src/**/*.ts"], "exclude": [ "src/**/*.bench.ts", "src/**/*.bench-d.ts", @@ -21,4 +16,4 @@ "src/**/*.test-d.ts" ] } -} \ No newline at end of file +} diff --git a/packages/abitype/package.json b/packages/abitype/package.json index 2881e2b6..5a5560ca 100644 --- a/packages/abitype/package.json +++ b/packages/abitype/package.json @@ -1,7 +1,7 @@ { "name": "abitype", "description": "Strict TypeScript types for Ethereum ABIs", - "version": "1.0.6", + "version": "1.0.7", "license": "MIT", "repository": "wevm/abitype", "scripts": { diff --git a/packages/abitype/src/version.ts b/packages/abitype/src/version.ts index 1800d881..be2113f7 100644 --- a/packages/abitype/src/version.ts +++ b/packages/abitype/src/version.ts @@ -1 +1 @@ -export const version = '1.0.6' +export const version = '1.0.7'