diff --git a/.changeset/old-crabs-join.md b/.changeset/old-crabs-join.md deleted file mode 100644 index 677ab20e..00000000 --- a/.changeset/old-crabs-join.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"frog": patch ---- - -Added root path support in `action` to jump into the root Frog instance via `'~'` symbol. Useful for code-splitting via `app.route`. diff --git a/.changeset/wild-fishes-speak.md b/.changeset/wild-fishes-speak.md deleted file mode 100644 index 7421d352..00000000 --- a/.changeset/wild-fishes-speak.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"frog": patch ---- - -Added degen chain support. [See more](https://warpcast.com/horsefacts.eth/0xd4fede11). diff --git a/.changeset/wild-ladybugs-double.md b/.changeset/wild-ladybugs-double.md deleted file mode 100644 index 26cd7532..00000000 --- a/.changeset/wild-ladybugs-double.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"frog": patch ---- - -Disabled watch process when frog CLI is called outside of a project directory. diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index 2f8efac7..1c6a3557 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,5 +1,15 @@ # frog +## 0.8.7 + +### Patch Changes + +- [#237](https://github.com/wevm/frog/pull/237) [`75f46a4`](https://github.com/wevm/frog/commit/75f46a4c75e2ded0fe7875481e996cdc05a366f7) Thanks [@dalechyn](https://github.com/dalechyn)! - Added root path support in `action` to jump into the root Frog instance via `'~'` symbol. Useful for code-splitting via `app.route`. + +- [#287](https://github.com/wevm/frog/pull/287) [`268ee0d`](https://github.com/wevm/frog/commit/268ee0de2e0a310684b1f0a062fcf95a818a5f8c) Thanks [@dalechyn](https://github.com/dalechyn)! - Added degen chain support. [See more](https://warpcast.com/horsefacts.eth/0xd4fede11). + +- [#257](https://github.com/wevm/frog/pull/257) [`0d41ddf`](https://github.com/wevm/frog/commit/0d41ddfd63397df502bf5e636609bf68e8c11ee9) Thanks [@dalechyn](https://github.com/dalechyn)! - Disabled watch process when frog CLI is called outside of a project directory. + ## 0.8.6 ### Patch Changes diff --git a/src/package.json b/src/package.json index 5ca7b868..f17e75cd 100644 --- a/src/package.json +++ b/src/package.json @@ -1,7 +1,7 @@ { "name": "frog", "description": "Framework for Farcaster Frames", - "version": "0.8.6", + "version": "0.8.7", "type": "module", "module": "_lib/index.js", "types": "_lib/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 4718f493..3a8f748f 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const version = '0.8.6' +export const version = '0.8.7'