Skip to content

Commit

Permalink
iced 0.13 release!
Browse files Browse the repository at this point in the history
  • Loading branch information
Redhawk18 committed Sep 18, 2024
1 parent 3fca6b4 commit cdb5e30
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
on:
push:
tags:
- '*'

name: Publish

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3

- name: toolchain
uses: dtolnay/rust-toolchain@stable

- name: cargo login
run: cargo login ${{ secrets.CRATES_IO_TOKEN }}

- name: cargo publish
run: cargo publish
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ keywords = ["gui", "iced"]
categories = ["gui"]

[workspace.dependencies]
iced_core = "0.13.0-dev"
iced_core = "0.13"

[patch.crates-io]
iced_core = { git = "https://github.com/iced-rs/iced.git" }
# iced_core = { git = "https://github.com/iced-rs/iced.git" }
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ iced_fonts = { git = "https://github.com/Redhawk18/iced_fonts", features = [...]

| `iced` version | `iced_fonts` version |
| -------------- | ---------------------|
| 0.13.0-dev | master |
| 0.13.0 | 0.1.0 |

## Fonts
Fonts can all be enabled with feature flags. All the fonts can be enabled with the `full` feature flag.
Expand Down

0 comments on commit cdb5e30

Please sign in to comment.