From 3f9cefe08332449bd93a194c89c6c94f26de3308 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 7 Jun 2024 23:31:25 +0300 Subject: [PATCH] chore: version packages (#346) Co-authored-by: github-actions[bot] --- .changeset/cyan-tomatoes-watch.md | 5 ----- .changeset/fifty-doors-speak.md | 5 ----- .changeset/fresh-oranges-tie.md | 5 ----- .changeset/lazy-kiwis-vanish.md | 5 ----- src/CHANGELOG.md | 12 ++++++++++++ src/package.json | 2 +- src/version.ts | 2 +- 7 files changed, 14 insertions(+), 22 deletions(-) delete mode 100644 .changeset/cyan-tomatoes-watch.md delete mode 100644 .changeset/fifty-doors-speak.md delete mode 100644 .changeset/fresh-oranges-tie.md delete mode 100644 .changeset/lazy-kiwis-vanish.md diff --git a/.changeset/cyan-tomatoes-watch.md b/.changeset/cyan-tomatoes-watch.md deleted file mode 100644 index f9d275f6..00000000 --- a/.changeset/cyan-tomatoes-watch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"frog": patch ---- - -Fixed incorrect internal image route matching that previously was only working when `assetsUrl` and `baseUrl` were the same. diff --git a/.changeset/fifty-doors-speak.md b/.changeset/fifty-doors-speak.md deleted file mode 100644 index 7d6652aa..00000000 --- a/.changeset/fifty-doors-speak.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"frog": patch ---- - -Added support of custom `handler` for Cast Actions if one wants to rely on the `Context` to give out a response for `GET` method. I.e. having the Action name to be derived from the path parameter. diff --git a/.changeset/fresh-oranges-tie.md b/.changeset/fresh-oranges-tie.md deleted file mode 100644 index d583c21f..00000000 --- a/.changeset/fresh-oranges-tie.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"frog": patch ---- - -Added Sepolia, Arbitrum Sepolia and Optimism Sepolia support. [See more](https://warpcast.com/horsefacts.eth/0x0a22c0f0). diff --git a/.changeset/lazy-kiwis-vanish.md b/.changeset/lazy-kiwis-vanish.md deleted file mode 100644 index be7ce581..00000000 --- a/.changeset/lazy-kiwis-vanish.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"frog": patch ---- - -Fixed an issue where user defined vars were not passed to `Text`, `Spacer`, `Divider` and `Image` components. diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index ed243acc..6b29cf64 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,5 +1,17 @@ # frog +## 0.11.6 + +### Patch Changes + +- [#342](https://github.com/wevm/frog/pull/342) [`904cfbf`](https://github.com/wevm/frog/commit/904cfbfa5b6a27ecbce20d094dbea9eb1e904294) Thanks [@dalechyn](https://github.com/dalechyn)! - Fixed incorrect internal image route matching that previously was only working when `assetsUrl` and `baseUrl` were the same. + +- [#341](https://github.com/wevm/frog/pull/341) [`f6033d3`](https://github.com/wevm/frog/commit/f6033d315b24205e976485d15a1c9954751aecfe) Thanks [@dalechyn](https://github.com/dalechyn)! - Added support of custom `handler` for Cast Actions if one wants to rely on the `Context` to give out a response for `GET` method. I.e. having the Action name to be derived from the path parameter. + +- [#347](https://github.com/wevm/frog/pull/347) [`a14da7b`](https://github.com/wevm/frog/commit/a14da7bc953891e0d6989a46d7b3c4e5cb0a9157) Thanks [@dalechyn](https://github.com/dalechyn)! - Added Sepolia, Arbitrum Sepolia and Optimism Sepolia support. [See more](https://warpcast.com/horsefacts.eth/0x0a22c0f0). + +- [#345](https://github.com/wevm/frog/pull/345) [`c2f4d56`](https://github.com/wevm/frog/commit/c2f4d563b4633b0ef87a3132db571659700ce84d) Thanks [@dalechyn](https://github.com/dalechyn)! - Fixed an issue where user defined vars were not passed to `Text`, `Spacer`, `Divider` and `Image` components. + ## 0.11.5 ### Patch Changes diff --git a/src/package.json b/src/package.json index 235713c6..74c33cc4 100644 --- a/src/package.json +++ b/src/package.json @@ -1,7 +1,7 @@ { "name": "frog", "description": "Framework for Farcaster Frames", - "version": "0.11.5", + "version": "0.11.6", "type": "module", "module": "_lib/index.js", "types": "_lib/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 2abf6d7e..3ade8ab0 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const version = '0.11.5' +export const version = '0.11.6'