Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 850e8f5

Browse files
chore: version packages (#477)
* chore: version packages * Update src/package.json --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Vladyslav Dalechyn <[email protected]>
1 parent 4539665 commit 850e8f5

File tree

4 files changed

+37
-36
lines changed

4 files changed

+37
-36
lines changed

.changeset/tiny-walls-collect.md

Lines changed: 0 additions & 34 deletions
This file was deleted.

src/CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
# frog
22

3+
## 0.17.0
4+
5+
### Minor Changes
6+
7+
- [#476](https://github.com/wevm/frog/pull/476) [`4539665`](https://github.com/wevm/frog/commit/453966543df5c3b3eb8afa011f8895b5018aa000) Thanks [@dalechyn](https://github.com/dalechyn)! - **Breaking Change**: `parent` and `channelKey` are deprecated in `ComposerActionMessage`
8+
9+
```diff
10+
import { postComposerActionMessage } from 'frog/next'
11+
12+
postComposerActionMessage({
13+
type: "createCast",
14+
data: {
15+
cast: {
16+
embeds: [/*...*/];
17+
text: 'Hi';
18+
- parent: '0x...'
19+
- channelKey: '...'
20+
};
21+
};
22+
})
23+
```
24+
25+
```diff
26+
import { postComposerCreateCastActionMessage } from 'frog/next'
27+
28+
postComposerCreateCastActionMessage({
29+
embeds: [/*...*/];
30+
text: 'Hi';
31+
- parent: '0x...'
32+
- channelKey: '...'
33+
})
34+
```
35+
36+
[See More](https://warpcast.com/horsefacts.eth/0x98185a2f).
37+
338
## 0.16.1
439

540
### Patch Changes

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "frog",
33
"description": "Framework for Farcaster Frames",
4-
"version": "0.16.1",
4+
"version": "0.17.0",
55
"type": "module",
66
"module": "_lib/index.js",
77
"types": "_lib/index.d.ts",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '0.16.1'
1+
export const version = '0.17.0'

0 commit comments

Comments
 (0)