release: 1.3.0
This commit is contained in:
parent
67709ac241
commit
b966d78be3
4 changed files with 9 additions and 3 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -187,7 +187,7 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
|
|||
|
||||
[[package]]
|
||||
name = "beacon"
|
||||
version = "1.2.0"
|
||||
version = "1.3.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"axum",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "beacon"
|
||||
version = "1.2.0"
|
||||
version = "1.3.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue