Skip to content

Commit

Permalink
chore: version packages (#320)
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 May 16, 2024
1 parent 1261c6d commit b36a9e8
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 23 deletions.
20 changes: 0 additions & 20 deletions .changeset/many-schools-reflect.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.11.0

### Minor Changes

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

```diff
+ import { lucide } from 'frog/ui/icons'

export const system = createSystem({
- icons: 'lucide',
+ icons: lucide,
})
```

In addition, the following separate entrypoints were added for resource constrained environments.

- `frog/ui/icons/heroicons`
- `frog/ui/icons/lucide`
- `frog/ui/icons/radix-icons`

## 0.10.0

### Minor 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.10.0",
"version": "0.11.0",
"type": "module",
"module": "_lib/index.js",
"types": "_lib/index.d.ts",
Expand Down Expand Up @@ -121,7 +121,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.10.0'
export const version = '0.11.0'

0 comments on commit b36a9e8

Please sign in to comment.