Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v4
with:
path: './docs/'
- name: Deploy to GitHub Pages
Expand Down
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"rust-analyzer.linkedProjects": [
"./Cargo.toml"
]
}
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## 0.9.0

Update to `[email protected]`.

Replace `enum IconId` (having a feature-flagged variant per icon) with `struct IconData` (having an associated `const` per icon). Now there is only one feature flag per icon collection.

Before:
```rust
<Icon icon_id={IconId::LucideArrowLeftCircle}/>
```

After:
```rust
<Icon data={IconData::LUCIDE_ARROW_LEFT_CIRCLE}/>
```

This was motivated by [this crates.io issue](https://blog.rust-lang.org/2023/10/26/broken-badges-and-23k-keywords/) but is also associated with a significant binary size reduction.
Loading
Loading