Skip to content

Commit

Permalink
chore: version packages (#86)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Mar 6, 2024
1 parent b7031ff commit e796d91
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 27 deletions.
5 changes: 0 additions & 5 deletions .changeset/green-carrots-hide.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/odd-hats-rush.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/unlucky-lions-tan.md

This file was deleted.

21 changes: 21 additions & 0 deletions src/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# frog

## 0.4.0

### Minor Changes

- [#87](https://github.com/wevm/frog/pull/87) [`b7031ff`](https://github.com/wevm/frog/commit/b7031ff4f045a9539fb1a20899b35b41eb26515b) Thanks [@jxom](https://github.com/jxom)! - Added built-in middleware for Neynar. [Read more.](https://frog.fm/concepts/middleware#neynar)

### Patch Changes

- [#80](https://github.com/wevm/frog/pull/80) [`c377528`](https://github.com/wevm/frog/commit/c3775288bc8683d532d9c6ca2cd05e6f2f1bd69d) Thanks [@jxom](https://github.com/jxom)! - **Type Change:** The `state` generic in the `Frog` constructor type is now named.

```diff
type State = { count: number }

- const frog = new Frog<State>({
+ const frog = new Frog<{ State: State }>({
initialState: { count: 0 }
})
```

- [#80](https://github.com/wevm/frog/pull/80) [`c377528`](https://github.com/wevm/frog/commit/c3775288bc8683d532d9c6ca2cd05e6f2f1bd69d) Thanks [@jxom](https://github.com/jxom)! - Added a `var` property to context to extract variables that were previously set via `set` in Middleware. [Read more.](https://frog.fm/reference/frog-frame-context#var)

## 0.3.3

### Patch Changes
Expand Down
7 changes: 5 additions & 2 deletions src/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "frog",
"description": "Framework for Farcaster Frames",
"version": "0.3.3",
"version": "0.4.0",
"type": "module",
"module": "_lib/index.js",
"types": "_lib/index.d.ts",
Expand Down Expand Up @@ -84,7 +84,10 @@
"license": "MIT",
"homepage": "https://frog.fm",
"repository": "wevm/frog",
"authors": ["awkweb.eth", "jxom.eth"],
"authors": [
"awkweb.eth",
"jxom.eth"
],
"funding": [
{
"type": "github",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '0.3.3'
export const version = '0.4.0'

0 comments on commit e796d91

Please sign in to comment.