Skip to content

Commit

Permalink
feat: choose versions
Browse files Browse the repository at this point in the history
  • Loading branch information
simbleau committed Apr 25, 2024
1 parent c92028c commit 7ece96a
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 40 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-tagged.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ jobs:

# Replace latest release
- name: Clean | Latest
uses: dev-drprasad/delete-tag-and-release@v1.0.1
uses: dev-drprasad/[email protected]
with:
delete_release: true
tag_name: latest
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Release | Latest
id: create_release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
tag_name: "latest"
name: My Website
Expand Down
48 changes: 24 additions & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ opt-level = 'z'
strip = "debuginfo"

[dependencies]
yew = { version = "0.21", features = ["csr"] }
yew-router = "0.18"
stylist = { version = "0.13", features = ["yew_integration"] }
yew = { version = "0.21.0", features = ["csr"] }
yew-router = "0.18.0"
stylist = { version = "0.13.0", features = ["yew_integration"] }
themer = { git = "https://github.com/simbleau/themer", version = "0.3" }
hex_color = "3"
url = "2.4"
wasm-bindgen = "0.2"
gloo-utils = "0.2"
gloo-timers = "0.3"
serde = "1.0"
hex_color = "3.0.0"
url = "2.5.0"
wasm-bindgen = "0.2.92"
gloo-utils = "0.2.0"
gloo-timers = "0.3.0"
serde = "1.0.198"
console_error_panic_hook = "0.1.7"
log = "0.4.17"
console_log = { version = "1.0" }
once_cell = "1.15"
web-sys = { version = "0.3", features = [
console_log = "1.0.0"
once_cell = "1.19.0"
web-sys = { version = "0.3.69", features = [
"CssStyleDeclaration",
"Screen",
"Window",
Expand All @@ -43,4 +43,4 @@ web-sys = { version = "0.3", features = [
] }

[dev-dependencies]
wasm-bindgen-test = "0.3"
wasm-bindgen-test = "0.3.42"
2 changes: 1 addition & 1 deletion src/components/pfp.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::style::themes::ThemeChoice;
use stylist::yew::styled_component;
use themer::yew::use_theme;
use yew::{prelude::*, virtual_dom::AttrValue};
use yew::prelude::*;

#[derive(Properties, PartialEq)]
pub struct ProfilePictureProps {
Expand Down

0 comments on commit 7ece96a

Please sign in to comment.