diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a7ea2b..a8f1cd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. - - - +## v0.4.5 - 2025-01-05 +#### Bug Fixes +- improve empty state display - (d779d59) - aeyoll +#### Build system +- **(docker)** add perl dependency - (c609974) - *aeyoll* +- move from yarn to pnpm - (63bd992) - aeyoll +- update eslint plugin configType - (2831b9c) - aeyoll + +- - - + ## v0.4.4 - 2025-01-05 #### Build system - try to use vendored openssl version - (cbaa18f) - aeyoll diff --git a/Cargo.lock b/Cargo.lock index fecb04d..63adf06 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1025,7 +1025,7 @@ dependencies = [ [[package]] name = "mailboar" -version = "0.4.4" +version = "0.4.5" dependencies = [ "axum", "env_logger", @@ -1046,7 +1046,7 @@ dependencies = [ [[package]] name = "mailboar_backend" -version = "0.4.4" +version = "0.4.5" dependencies = [ "async-stream", "axum", @@ -1072,7 +1072,7 @@ dependencies = [ [[package]] name = "mailboar_frontend" -version = "0.4.4" +version = "0.4.5" dependencies = [ "askama", "axum", diff --git a/Cargo.toml b/Cargo.toml index e8f65c7..96b22eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [workspace.package] edition = "2021" -version = "0.4.4" +version = "0.4.5" license = "MIT" homepage = "https://github.com/aeyoll/mailboar" documentation = "https://github.com/aeyoll/mailboar" @@ -25,8 +25,8 @@ members = [ resolver = "2" [workspace.dependencies] -mailboar_backend = { path = "crates/backend", version = "0.4.4" } -mailboar_frontend = { path = "crates/frontend", version = "0.4.4" } +mailboar_backend = { path = "crates/backend", version = "0.4.5" } +mailboar_frontend = { path = "crates/frontend", version = "0.4.5" } axum = "0.7.5" env_logger = { version = "0.11.3", default-features = false } log = "0.4"