diff --git a/CHANGELOG.md b/CHANGELOG.md index a608781..b2b7b17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,38 @@ All notable changes to this project will be documented in this file. +## 0.3.1 - 2026-04-21 + +### 🚀 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 + +- *(template)* Use liquid extension to allow as using as git dependency by @atollk in [#176](https://github.com/ratatui/ratzilla/pull/176) +- *(dom)* Measure terminal cell size by @junkdog in [#159](https://github.com/ratatui/ratzilla/pull/159) + +### 📚 Documentation + +- *(readme)* Update the link to trunk's landing page by @orhun in [#173](https://github.com/ratatui/ratzilla/pull/173) +- *(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 to beamterm 1.0.0 by @junkdog in [#169](https://github.com/ratatui/ratzilla/pull/169) +- *(template)* Bump the dependencies for simple template by @orhun in [#177](https://github.com/ratatui/ratzilla/pull/177) +- *(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 00a535e..66be76f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -572,7 +572,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 2b7e001..1bcf4b3 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"