From 38ef6a6ee78a5c7bfef4b45ddc2fd9af0b520526 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jul 2024 22:21:46 +0300 Subject: [PATCH] chore: version packages (#437) * chore: version packages * Update src/package.json --------- Co-authored-by: github-actions[bot] Co-authored-by: Vladyslav Dalechyn --- .changeset/strange-paws-yell.md | 5 ----- .changeset/twelve-rocks-push.md | 8 -------- src/CHANGELOG.md | 11 +++++++++++ src/package.json | 2 +- src/version.ts | 2 +- 5 files changed, 13 insertions(+), 15 deletions(-) delete mode 100644 .changeset/strange-paws-yell.md delete mode 100644 .changeset/twelve-rocks-push.md diff --git a/.changeset/strange-paws-yell.md b/.changeset/strange-paws-yell.md deleted file mode 100644 index 9175a735..00000000 --- a/.changeset/strange-paws-yell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"frog": patch ---- - -Added `verifyOrigin` flag to `Frog` constructor. diff --git a/.changeset/twelve-rocks-push.md b/.changeset/twelve-rocks-push.md deleted file mode 100644 index abcb9965..00000000 --- a/.changeset/twelve-rocks-push.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"frog": patch ---- - -Implemented a feature where `initialState` can be a callback receiving Hono's `Context`. - -This is particularly useful when dealing with path parameters to dynamically initiate state. -This state will also be accessible in `c.previousState` in the Image Handler. diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index 239a3c06..673a612f 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,5 +1,16 @@ # frog +## 0.15.2 + +### Patch Changes + +- [#436](https://github.com/wevm/frog/pull/436) [`6ff12c3`](https://github.com/wevm/frog/commit/6ff12c37fff90a0c122401c9cae74b79aeed6143) Thanks [@dalechyn](https://github.com/dalechyn)! - Added `verifyOrigin` flag to `Frog` constructor. + +- [#435](https://github.com/wevm/frog/pull/435) [`43f4205`](https://github.com/wevm/frog/commit/43f4205df9c5962c816d6779e9ea8c196c82810b) Thanks [@dalechyn](https://github.com/dalechyn)! - Implemented a feature where `initialState` can be a callback receiving Hono's `Context`. + + This is particularly useful when dealing with path parameters to dynamically initiate state. + This state will also be accessible in `c.previousState` in the Image Handler. + ## 0.15.1 ### Patch Changes diff --git a/src/package.json b/src/package.json index d0f0ab3f..90288f16 100644 --- a/src/package.json +++ b/src/package.json @@ -1,7 +1,7 @@ { "name": "frog", "description": "Framework for Farcaster Frames", - "version": "0.15.1", + "version": "0.15.2", "type": "module", "module": "_lib/index.js", "types": "_lib/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 9430c2a8..1650fc55 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const version = '0.15.1' +export const version = '0.15.2'