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

Commit b36a9e8

Browse files
chore: version packages (#320)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 1261c6d commit b36a9e8

File tree

4 files changed

+27
-23
lines changed

4 files changed

+27
-23
lines changed

.changeset/many-schools-reflect.md

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

src/CHANGELOG.md

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

3+
## 0.11.0
4+
5+
### Minor Changes
6+
7+
- [#255](https://github.com/wevm/frog/pull/255) [`752ccab`](https://github.com/wevm/frog/commit/752ccabcbe4083d747e2ee01c99352d0a0d567bb) Thanks [@dalechyn](https://github.com/dalechyn)! - **Breaking change** Frog UI `icon` property requires an icon map imported from the `'frog/ui/icons'` entrypoint. This also makes it easier for you to supply your own custom icons.
8+
9+
```diff
10+
+ import { lucide } from 'frog/ui/icons'
11+
12+
export const system = createSystem({
13+
- icons: 'lucide',
14+
+ icons: lucide,
15+
})
16+
```
17+
18+
In addition, the following separate entrypoints were added for resource constrained environments.
19+
20+
- `frog/ui/icons/heroicons`
21+
- `frog/ui/icons/lucide`
22+
- `frog/ui/icons/radix-icons`
23+
324
## 0.10.0
425

526
### Minor Changes

src/package.json

Lines changed: 5 additions & 2 deletions
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.10.0",
4+
"version": "0.11.0",
55
"type": "module",
66
"module": "_lib/index.js",
77
"types": "_lib/index.d.ts",
@@ -121,7 +121,10 @@
121121
"license": "MIT",
122122
"homepage": "https://frog.fm",
123123
"repository": "wevm/frog",
124-
"authors": ["awkweb.eth", "jxom.eth"],
124+
"authors": [
125+
"awkweb.eth",
126+
"jxom.eth"
127+
],
125128
"funding": [
126129
{
127130
"type": "github",

src/version.ts

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

0 commit comments

Comments
 (0)