diff --git a/Cargo.lock b/Cargo.lock index c86a62c..928e0f1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -187,7 +187,7 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "beacon" -version = "1.2.0" +version = "1.3.0" dependencies = [ "anyhow", "axum", diff --git a/Cargo.toml b/Cargo.toml index 4bb10f8..2e268f2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "beacon" -version = "1.2.0" +version = "1.3.0" edition = "2021" [dependencies] diff --git a/src/changelog.rs b/src/changelog.rs index b5c4440..2d76685 100644 --- a/src/changelog.rs +++ b/src/changelog.rs @@ -6,6 +6,13 @@ pub fn changelog_page() -> Markup { layout(html! { h1 { "Beacon Changelog" } + section { + h2 { "1.3.0, 11.02.2025" } + ul { + li { "You can now pin fish to the top of your list. These are also saved in your account." } + } + } + section { h2 { "1.2.0, 09.02.2025" } ul { diff --git a/src/main.rs b/src/main.rs index 2fedf87..1305bc0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,7 +8,6 @@ use axum::{ Router, }; use data::{CombinedFish, Data, Filters}; -use db::delete_pinned_fish; use maud::{html, Markup}; use nanoid::nanoid; use serde::Deserialize;