diff --git a/CHANGELOG.md b/CHANGELOG.md index 6953b04..104fc7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.13.1] - 2025-12-03 + +### 🐛 Bug Fixes + +- **FIBO VLM chat template not loaded**: Fixed issue where the FIBO VLM tokenizer's chat template was not being loaded with `transformers` v5, causing `apply_chat_template()` to fail. The tokenizer loader now properly extracts and sets the chat template from the tokenizer config. + +--- + ## [0.13.0] - 2025-12-03 # MFLUX v.0.13.0 Release Notes diff --git a/pyproject.toml b/pyproject.toml index 9a8edaa..4f3b775 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ source-exclude = [ [project] name = "mflux" -version = "0.13.0" +version = "0.13.1" description = "A MLX port of FLUX based on the Huggingface Diffusers implementation." readme = "README.md" keywords = ["diffusers", "flux", "mlx"]