diff --git a/CHANGELOG.md b/CHANGELOG.md
index d55be1f..bbd7aa8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,12 +1,10 @@
-### Direction
-I'm following [this roadmap](https://dystroy.org/blog/bacon-everything-roadmap/). If you're interested in having bacon usable for other languages than Rust, come have a chat.
-
-### Next
-- new analyzer model, enable new kinds of tools
+
+### v3.4.0 - 2024/11/30
+- new analyzer framework, make it possible for bacon to call more tools
- Python Pytest analyzer
- Analyzer for `cargo check --message-format json-diagnostic-rendered-ansi` - see #269
-- allow specify scroll-pages action with a floating point number - Fix #264
+- allow specifying scroll-pages action with a floating point number - Fix #264
### v3.3.0 - 2024/11/16
diff --git a/Cargo.lock b/Cargo.lock
index aa5d631..13afadf 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -125,7 +125,7 @@ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
[[package]]
name = "bacon"
-version = "3.3.0-new-analyzer-model"
+version = "3.4.0"
dependencies = [
"anyhow",
"cargo_metadata",
diff --git a/Cargo.toml b/Cargo.toml
index b199220..15c6b7b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bacon"
-version = "3.3.0-new-analyzer-model"
+version = "3.4.0"
authors = ["dystroy "]
repository = "https://github.com/Canop/bacon"
description = "background rust compiler"
diff --git a/src/state.rs b/src/state.rs
index a2b08f9..3902b42 100644
--- a/src/state.rs
+++ b/src/state.rs
@@ -116,7 +116,6 @@ impl<'s> AppState<'s> {
messages: Vec::new(),
})
}
-
pub fn add_line(
&mut self,
line: CommandOutputLine,
diff --git a/website/docs/config.md b/website/docs/config.md
index 7efe844..7064e0f 100644
--- a/website/docs/config.md
+++ b/website/docs/config.md
@@ -114,7 +114,7 @@ Available analyzers:
* `python_unittest` for [Unittest](https://docs.python.org/3/library/unittest.html)
* `python_pytest` for [pytest](https://docs.pytest.org/)
-See [Bacon for everything - status](https://dystroy.org/blog/bacon-everything-status/).
+[Are they bacon yet?](https://dystroy.org/blog/are-they-bacon-yet/).
## Default Job