diff --git a/CHANGELOG.md b/CHANGELOG.md index e85def2..663d17b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ All notable changes to this project will be documented in this file. +## [0.1.21] - 2026-07-20 + +### 🚀 Features + +- Support backend-specific max-vram budgets +- Flutter gui ([#119](https://github.com/newfla/diffusion-rs/pull/119)) +- Add eager loading of parameters ([#120](https://github.com/newfla/diffusion-rs/pull/120)) +- Krea2 & boogu preset support ([#121](https://github.com/newfla/diffusion-rs/pull/121)) +- Add MiniT2I preset support and update related configurations ([#122](https://github.com/newfla/diffusion-rs/pull/122)) + +### 🐛 Bug Fixes + +- Max vram default value on macos + + + ## [0.1.20] - 2026-06-15 ### 🚀 Features diff --git a/Cargo.toml b/Cargo.toml index 2faba15..17d21b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["sys", "cli"] [workspace.package] authors = ["Flavio Bizzarri "] -version = "0.1.20" +version = "0.1.21" edition = "2024" license = "MIT" repository = "https://github.com/newfla/diffusion-rs" @@ -23,7 +23,7 @@ documentation = "https://docs.rs/diffusion-rs" [dependencies] chrono.workspace = true derive_builder = "0.20.2" -diffusion-rs-sys = { path = "sys", version = "0.1.20" } +diffusion-rs-sys = { path = "sys", version = "0.1.21" } hf-hub = { version = "1.0.0", default-features = false, features = [ "blocking", ] } diff --git a/sys/CHANGELOG.md b/sys/CHANGELOG.md index f2e5f99..3435fb9 100644 --- a/sys/CHANGELOG.md +++ b/sys/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to this project will be documented in this file. +## [0.1.21] - 2026-07-20 + +### 🚀 Features + +- Support backend-specific max-vram budgets +- Add eager loading of parameters ([#120](https://github.com/newfla/diffusion-rs/pull/120)) +- Krea2 & boogu preset support ([#121](https://github.com/newfla/diffusion-rs/pull/121)) +- Add MiniT2I preset support and update related configurations ([#122](https://github.com/newfla/diffusion-rs/pull/122)) + + + ## [0.1.20] - 2026-06-15 ### 🚀 Features