diff --git a/.changeset/local-zones-bounceback.md b/.changeset/local-zones-bounceback.md deleted file mode 100644 index b9b20c20bf..0000000000 --- a/.changeset/local-zones-bounceback.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"viem": patch ---- - -Added Tempo zone encryption-key and deposit-status waiting actions, defaulted bounceback recipients to accounts, and adapted receipt polling for private Zone RPCs. diff --git a/.changeset/verify-hash-block-hash.md b/.changeset/verify-hash-block-hash.md deleted file mode 100644 index 849f6523b9..0000000000 --- a/.changeset/verify-hash-block-hash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"viem": patch ---- - -Added `blockHash` and `requireCanonical` parameters to `verifyHash`, `verifyMessage`, `verifyTypedData`, and `verifySiweMessage`, allowing onchain signature verification to be pinned to a specific block via EIP-1898. diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index 48f9485059..5bed55ab4e 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,5 +1,13 @@ # viem +## 2.55.1 + +### Patch Changes + +- [#4828](https://github.com/wevm/viem/pull/4828) [`765e19b99b97567ef7b3446bc196353cdaa281a3`](https://github.com/wevm/viem/commit/765e19b99b97567ef7b3446bc196353cdaa281a3) Thanks [@jxom](https://github.com/jxom)! - Added Tempo zone encryption-key and deposit-status waiting actions, defaulted bounceback recipients to accounts, and adapted receipt polling for private Zone RPCs. + +- [#4823](https://github.com/wevm/viem/pull/4823) [`c31e0bd376bf41250c1833cd741e9a93bfe75398`](https://github.com/wevm/viem/commit/c31e0bd376bf41250c1833cd741e9a93bfe75398) Thanks [@jxom](https://github.com/jxom)! - Added `blockHash` and `requireCanonical` parameters to `verifyHash`, `verifyMessage`, `verifyTypedData`, and `verifySiweMessage`, allowing onchain signature verification to be pinned to a specific block via EIP-1898. + ## 2.55.0 ### Minor Changes diff --git a/src/errors/version.ts b/src/errors/version.ts index db0dce36f2..07a5348510 100644 --- a/src/errors/version.ts +++ b/src/errors/version.ts @@ -1 +1 @@ -export const version = '2.55.0' +export const version = '2.55.1' diff --git a/src/package.json b/src/package.json index b1cf07dcff..0b2474ebe8 100644 --- a/src/package.json +++ b/src/package.json @@ -1,7 +1,7 @@ { "name": "viem", "description": "TypeScript Interface for Ethereum", - "version": "2.55.0", + "version": "2.55.1", "type": "module", "main": "./_cjs/index.js", "module": "./_esm/index.js",