diff --git a/.changeset/breezy-timers-vanish.md b/.changeset/breezy-timers-vanish.md deleted file mode 100644 index 4ce41963..00000000 --- a/.changeset/breezy-timers-vanish.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"frog": patch ---- - -Changed default value for `verify` to be `process.env.NODE_ENV === 'production'` as many newcomers have been hitting issues with that, and in fact nobody wants to pay warps for frame tests. diff --git a/.changeset/mean-pianos-cheer.md b/.changeset/mean-pianos-cheer.md deleted file mode 100644 index 06e0b3f9..00000000 --- a/.changeset/mean-pianos-cheer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"frog": patch ---- - -Added access to `previousState` and `previousButtonValues` in Image Handler. diff --git a/.changeset/neat-hairs-battle.md b/.changeset/neat-hairs-battle.md deleted file mode 100644 index fd09d3df..00000000 --- a/.changeset/neat-hairs-battle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"frog": patch ---- - -Added support for Composer Actions. [See More](https://warpcast.notion.site/Draft-Composer-Actions-7f2b8739ee8447cc8a6b518c234b1eeb). diff --git a/.changeset/silent-drinks-brush.md b/.changeset/silent-drinks-brush.md deleted file mode 100644 index cf9868b7..00000000 --- a/.changeset/silent-drinks-brush.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"create-frog": patch ---- - -Fixed an issue with absent `title` in templates that led to a typing error. diff --git a/create-frog/CHANGELOG.md b/create-frog/CHANGELOG.md index 3a890a79..d2fd0be0 100644 --- a/create-frog/CHANGELOG.md +++ b/create-frog/CHANGELOG.md @@ -1,5 +1,11 @@ # create-frog +## 0.1.8 + +### Patch Changes + +- [#425](https://github.com/wevm/frog/pull/425) [`ab1a969`](https://github.com/wevm/frog/commit/ab1a969659f3d9d170f2f463ab6e51a286f3973f) Thanks [@dalechyn](https://github.com/dalechyn)! - Fixed an issue with absent `title` in templates that led to a typing error. + ## 0.1.7 ### Patch Changes diff --git a/create-frog/package.json b/create-frog/package.json index 896a0327..fc194d2e 100644 --- a/create-frog/package.json +++ b/create-frog/package.json @@ -1,6 +1,6 @@ { "name": "create-frog", - "version": "0.1.7", + "version": "0.1.8", "type": "module", "bin": { "create-frog": "./_lib/bin.js" diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index d128ba5b..309195e0 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,5 +1,15 @@ # frog +## 0.14.5 + +### Patch Changes + +- [#430](https://github.com/wevm/frog/pull/430) [`0016cc2`](https://github.com/wevm/frog/commit/0016cc2bac752350b7538f21b67032776ef90a88) Thanks [@dalechyn](https://github.com/dalechyn)! - Changed default value for `verify` to be `process.env.NODE_ENV === 'production'` as many newcomers have been hitting issues with that, and in fact nobody wants to pay warps for frame tests. + +- [#427](https://github.com/wevm/frog/pull/427) [`ae57791`](https://github.com/wevm/frog/commit/ae57791dc15260f11746916ebb568450f1ef0a83) Thanks [@dalechyn](https://github.com/dalechyn)! - Added access to `previousState` and `previousButtonValues` in Image Handler. + +- [#396](https://github.com/wevm/frog/pull/396) [`d763d1a`](https://github.com/wevm/frog/commit/d763d1a8289790447c5e26813c25a3a87eb9be8a) Thanks [@dalechyn](https://github.com/dalechyn)! - Added support for Composer Actions. [See More](https://warpcast.notion.site/Draft-Composer-Actions-7f2b8739ee8447cc8a6b518c234b1eeb). + ## 0.14.4 ### Patch Changes diff --git a/src/package.json b/src/package.json index 71f24ef7..88c9d244 100644 --- a/src/package.json +++ b/src/package.json @@ -1,7 +1,7 @@ { "name": "frog", "description": "Framework for Farcaster Frames", - "version": "0.14.4", + "version": "0.14.5", "type": "module", "module": "_lib/index.js", "types": "_lib/index.d.ts", @@ -121,7 +121,10 @@ "license": "MIT", "homepage": "https://frog.fm", "repository": "wevm/frog", - "authors": ["awkweb.eth", "jxom.eth"], + "authors": [ + "awkweb.eth", + "jxom.eth" + ], "funding": [ { "type": "github", diff --git a/src/version.ts b/src/version.ts index 65c72039..001e5464 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const version = '0.14.4' +export const version = '0.14.5'