Skip to content

Commit

Permalink
chore: version packages (#477)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
3 people committed Aug 22, 2024
1 parent 4539665 commit 850e8f5
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 36 deletions.
34 changes: 0 additions & 34 deletions .changeset/tiny-walls-collect.md

This file was deleted.

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

## 0.17.0

### Minor Changes

- [#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`

```diff
import { postComposerActionMessage } from 'frog/next'

postComposerActionMessage({
type: "createCast",
data: {
cast: {
embeds: [/*...*/];
text: 'Hi';
- parent: '0x...'
- channelKey: '...'
};
};
})
```

```diff
import { postComposerCreateCastActionMessage } from 'frog/next'

postComposerCreateCastActionMessage({
embeds: [/*...*/];
text: 'Hi';
- parent: '0x...'
- channelKey: '...'
})
```

[See More](https://warpcast.com/horsefacts.eth/0x98185a2f).

## 0.16.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion 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.16.1",
"version": "0.17.0",
"type": "module",
"module": "_lib/index.js",
"types": "_lib/index.d.ts",
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.16.1'
export const version = '0.17.0'

0 comments on commit 850e8f5

Please sign in to comment.