diff --git a/CHANGELOG.md b/CHANGELOG.md index 2582b8d..a803910 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to this project will be documented in this file. +## [0.8.1] - 2025-02-03 + +### 🚀 Features + +- Support many LLMs via OpenRouter (#261) +- Embeddings without an external provider via FastEmbed (#262) +- Allow running `init` on different filenames (#266) +- Onboarding flow improvements (#265) + +### 📚 Documentation + +- *(README)* Slower demo + + ## [0.8.0] - 2025-01-29 ### 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index f0b93c5..a4eaec7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3915,7 +3915,7 @@ dependencies = [ [[package]] name = "kwaak" -version = "0.8.0" +version = "0.8.1" dependencies = [ "ansi-to-tui", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 4e2b16d..d97c5db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kwaak" -version = "0.8.0" +version = "0.8.1" edition = "2021" categories = ["development-tools", "command-line-utilities"] readme = "README.md"