diff --git a/.changeset/clever-starfishes-give.md b/.changeset/clever-starfishes-give.md deleted file mode 100644 index ade32b2794..0000000000 --- a/.changeset/clever-starfishes-give.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"viem": patch ---- - -Fixed an issue where calling `encodePacked` with an empty `bytes[]` array would return an `Uint8Array` instead of `Hex` value. diff --git a/.changeset/dirty-lobsters-beg.md b/.changeset/dirty-lobsters-beg.md deleted file mode 100644 index 0f412f4d9c..0000000000 --- a/.changeset/dirty-lobsters-beg.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"viem": patch ---- - -Fixed an issue where `parseUnits` would throw `Cannot convert to a BigInt` for large numbers with a fraction component. diff --git a/CHANGELOG.md b/CHANGELOG.md index 85bca92fd7..71499e4211 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # viem +## 1.4.1 + +### Patch Changes + +- [`789592dc`](https://github.com/wagmi-dev/viem/commit/789592dc5d4ca264f2ef4f3f0f4fa721fb9522fc) Thanks [@jxom](https://github.com/jxom)! - Fixed an issue where calling `encodePacked` with an empty `bytes[]` array would return an `Uint8Array` instead of `Hex` value. + +* [#922](https://github.com/wagmi-dev/viem/pull/922) [`71c9c933`](https://github.com/wagmi-dev/viem/commit/71c9c9338904d142248a32f1acd99ea25a6e6e58) Thanks [@mikemcdonald](https://github.com/mikemcdonald)! - Fixed an issue where `parseUnits` would throw `Cannot convert to a BigInt` for large numbers with a fraction component. + ## 1.4.0 ### Minor Changes diff --git a/package.json b/package.json index e3b79222e5..53cef3a3fd 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "viem", "description": "TypeScript Interface for Ethereum", - "version": "1.4.0", + "version": "1.4.1", "scripts": { "bench": "vitest bench", "bench:ci": "CI=true vitest bench", diff --git a/src/errors/version.ts b/src/errors/version.ts index e197e09ea2..3ac48444d2 100644 --- a/src/errors/version.ts +++ b/src/errors/version.ts @@ -1 +1 @@ -export const version = '1.3.1' +export const version = '1.4.1'