release: 1.3.0

This commit is contained in:
insects 2025-02-11 01:46:54 +01:00
parent 67709ac241
commit b966d78be3
4 changed files with 9 additions and 3 deletions

2
Cargo.lock generated
View file

@ -187,7 +187,7 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
[[package]]
name = "beacon"
version = "1.2.0"
version = "1.3.0"
dependencies = [
"anyhow",
"axum",

View file

@ -1,6 +1,6 @@
[package]
name = "beacon"
version = "1.2.0"
version = "1.3.0"
edition = "2021"
[dependencies]

View file

@ -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 {

View file

@ -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;