From 88f1b891fbeae11636218399ef8fed8f31985e1a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 11 Aug 2024 01:36:20 +0300 Subject: [PATCH] chore: version packages (#470) * chore: version packages * Update src/package.json --------- Co-authored-by: github-actions[bot] Co-authored-by: Vladyslav Dalechyn --- .changeset/lemon-doors-fail.md | 7 ------- .changeset/slimy-turtles-remain.md | 5 ----- src/CHANGELOG.md | 12 ++++++++++++ src/package.json | 2 +- src/version.ts | 2 +- 5 files changed, 14 insertions(+), 14 deletions(-) delete mode 100644 .changeset/lemon-doors-fail.md delete mode 100644 .changeset/slimy-turtles-remain.md diff --git a/.changeset/lemon-doors-fail.md b/.changeset/lemon-doors-fail.md deleted file mode 100644 index 5416b7a8..00000000 --- a/.changeset/lemon-doors-fail.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"frog": minor ---- - -**Breaking Change:** Renamed exported `Context` type to `FrameBaseContext`. -Fixed an issue where frame message was parsed incorrectly and was expecting `cast_id` in Composer Action Handler. -Exported previously forgotten types. diff --git a/.changeset/slimy-turtles-remain.md b/.changeset/slimy-turtles-remain.md deleted file mode 100644 index 977678dd..00000000 --- a/.changeset/slimy-turtles-remain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"frog": patch ---- - -Fixed an issue where defining fonts in multiple places would override each other. Now all defined fonts are grouped altogether. diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index bb3a1e24..989a2dc8 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,5 +1,17 @@ # frog +## 0.16.0 + +### Minor Changes + +- [#466](https://github.com/wevm/frog/pull/466) [`d4899ab`](https://github.com/wevm/frog/commit/d4899abcc802d48b5f6f5867f526f35e86a28818) Thanks [@dalechyn](https://github.com/dalechyn)! - **Breaking Change:** Renamed exported `Context` type to `FrameBaseContext`. + Fixed an issue where frame message was parsed incorrectly and was expecting `cast_id` in Composer Action Handler. + Exported previously forgotten types. + +### Patch Changes + +- [#471](https://github.com/wevm/frog/pull/471) [`24d3bec`](https://github.com/wevm/frog/commit/24d3bec61bc403bb68bfa3fe5a3ef94045d58964) Thanks [@dalechyn](https://github.com/dalechyn)! - Fixed an issue where defining fonts in multiple places would override each other. Now all defined fonts are grouped altogether. + ## 0.15.9 ### Patch Changes diff --git a/src/package.json b/src/package.json index dab82e1b..518f67c0 100644 --- a/src/package.json +++ b/src/package.json @@ -1,7 +1,7 @@ { "name": "frog", "description": "Framework for Farcaster Frames", - "version": "0.15.9", + "version": "0.16.0", "type": "module", "module": "_lib/index.js", "types": "_lib/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 9f5799b1..33e27332 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const version = '0.15.9' +export const version = '0.16.0'