Skip to content

Commit

Permalink
Update version to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lukechu10 committed Nov 1, 2024
1 parent 1406056 commit 2cfdd66
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/pages/index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ fn IndexBody() -> View {
}

p(class="text-sm mt-4 text-gray-800") {
"Latest Release: " a(href="https://crates.io/crates/sycamore", class="underline") { "v0.9.0-beta.4" }
"Latest Release: " a(href="https://crates.io/crates/sycamore", class="underline") { "v0.9.0" }
}
}
// Code example
Expand Down Expand Up @@ -153,7 +153,10 @@ fn Counter(initial: i32) -> View {

#[cfg_ssr]
#[component(inline_props)]
fn SectionHeading(content: &'static str, #[prop(attributes(html, h2))] attributes: Attributes) -> View {
fn SectionHeading(
content: &'static str,
#[prop(attributes(html, h2))] attributes: Attributes,
) -> View {
view! {
h2(class="text-4xl text-center font-bold mt-20 mb-5", ..attributes) {
(content)
Expand Down

0 comments on commit 2cfdd66

Please sign in to comment.