From 7688c8ce6b9a9c1044ae7936c45395d121d78198 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Mar 2026 11:18:13 +0000 Subject: [PATCH] chore: release v0.3.1 --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 30 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a608781..208efa8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,34 @@ All notable changes to this project will be documented in this file. +## 0.3.1 - 2026-03-15 + +### 🚀 Features + +- *(backend)* Add `CellSized` trait for querying cell dimensions in physical and CSS pixels by @junkdog in [#165](https://github.com/ratatui/ratzilla/pull/165) +- *(webgl2)* Add `cell_size()` and `set_size()` to `WebGl2Backend` by @junkdog in [#164](https://github.com/ratatui/ratzilla/pull/164) +- *(mouse)* Enhance mouse events with grid coordinates by @junkdog in [#157](https://github.com/ratatui/ratzilla/pull/157) +- *(webgl2)* Update to beamterm 0.15.0 and add `disable_auto_css_resize` option by @junkdog in [#155](https://github.com/ratatui/ratzilla/pull/155) +- Update beamterm to 0.13.0 and add option for using dynamic_font_atlas by @0xferrous in [#144](https://github.com/ratatui/ratzilla/pull/144) + +### 🐛 Bug Fixes + +- *(dom)* Measure terminal cell size by @junkdog in [#159](https://github.com/ratatui/ratzilla/pull/159) + +### 📚 Documentation + +- *(readme)* Add kana learning tool website by @benoitlx in [#158](https://github.com/ratatui/ratzilla/pull/158) +- *(backends)* Update backend comparison and feature matrix by @junkdog in [#153](https://github.com/ratatui/ratzilla/pull/153) + +### ⚙️ Miscellaneous Tasks + +- *(deps)* Bump beamterm to 0.17.0 by @junkdog in [#166](https://github.com/ratatui/ratzilla/pull/166) + + +**Full Changelog**: https://github.com/ratatui/ratzilla/compare/0.3.0...0.3.1 + + + ## 0.3.0 - 2026-01-23 Ratzilla is a part of the [@ratatui](https://github.com/ratatui) organization now! 🐭 diff --git a/Cargo.lock b/Cargo.lock index 20a359e..4ed04d5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -590,7 +590,7 @@ dependencies = [ [[package]] name = "ratzilla" -version = "0.3.0" +version = "0.3.1" dependencies = [ "beamterm-renderer", "bitvec", diff --git a/Cargo.toml b/Cargo.toml index e841249..ea463b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ratzilla" -version = "0.3.0" +version = "0.3.1" description = "Build terminal-themed web applications with Ratatui and WebAssembly" authors = ["Orhun Parmaksız "] license = "MIT OR Apache-2.0"