diff --git a/CHANGELOG.md b/CHANGELOG.md
index 96855b7..c51236e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,5 @@
-### next
+
+### v2.12.0 - 2023/07/20
- better `--help`
diff --git a/Cargo.lock b/Cargo.lock
index 05e57a1..c6051c8 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -128,7 +128,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "bacon"
-version = "2.12.0-dev"
+version = "2.12.0"
dependencies = [
"anyhow",
"cargo_metadata",
diff --git a/Cargo.toml b/Cargo.toml
index b8ae25f..f4aca55 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bacon"
-version = "2.12.0-dev"
+version = "2.12.0"
authors = ["dystroy "]
repository = "https://github.com/Canop/bacon"
description = "background rust compiler"
diff --git a/src/args.rs b/src/args.rs
index df940e8..a72fcd2 100644
--- a/src/args.rs
+++ b/src/args.rs
@@ -152,6 +152,7 @@ impl Args {
let skin = printer.skin_mut();
skin.headers[0].compound_style.set_fg(ansi(204));
skin.bold.set_fg(ansi(204));
+ //skin.italic = termimad::CompoundStyle::with_fg(ansi(2));
printer.print_help();
}
}