From 581ca3f1f196005daa21582c9a09057041371cca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 23 Jul 2023 07:22:01 +0200 Subject: [PATCH] chore: version package (#925) Co-authored-by: github-actions[bot] --- .changeset/clever-starfishes-give.md | 5 ----- .changeset/dirty-lobsters-beg.md | 5 ----- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/errors/version.ts | 2 +- 5 files changed, 10 insertions(+), 12 deletions(-) delete mode 100644 .changeset/clever-starfishes-give.md delete mode 100644 .changeset/dirty-lobsters-beg.md 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'