Skip to content

Commit ab1f4b3

Browse files
chore: release v0.3.0 (#152)
* chore: release v0.2.1 * chore: bump to 0.3.0 --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Orhun Parmaksız <orhunparmaksiz@gmail.com>
1 parent c65555e commit ab1f4b3

5 files changed

Lines changed: 111 additions & 27 deletions

File tree

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,38 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## 0.3.0 - 2026-01-23
6+
7+
Ratzilla is a part of the [@ratatui](https://github.com/ratatui) organization now! 🐭
8+
9+
### 🚀 Features
10+
11+
- Allow setting mouse `SelectionMode` on webgl2 backend by @0xferrous in [#143](https://github.com/ratatui/ratzilla/pull/143)
12+
13+
### 🚜 Refactor
14+
15+
- _(dom)_ Removes double buffering from `DomBackend` by @benoitlx in [#138](https://github.com/ratatui/ratzilla/pull/138)
16+
17+
### 📚 Documentation
18+
19+
- _(readme)_ Add sdr db website to readme by @nuts-rice in [#147](https://github.com/ratatui/ratzilla/pull/147)
20+
- _(readme)_ Add website for AlertAngel by @Vaishnav-Sabari-Girish in [#136](https://github.com/ratatui/ratzilla/pull/136)
21+
- _(readme)_ Remove Jet Pham's Conway's Game of Life link by @jetpham in [#131](https://github.com/ratatui/ratzilla/pull/131)
22+
- _(readme)_ Add glues website by @panarch in [#129](https://github.com/ratatui/ratzilla/pull/129)
23+
24+
### ⚙️ Miscellaneous Tasks
25+
26+
- _(website)_ Update the GitHub pages deploy URL by @orhun in [#151](https://github.com/ratatui/ratzilla/pull/151)
27+
- _(project)_ Update the repository link by @orhun in [#148](https://github.com/ratatui/ratzilla/pull/148)
28+
- Update to ratatui 0.30.0 by @0xferrous in [#141](https://github.com/ratatui/ratzilla/pull/141)
29+
- _(deps)_ Bump beamterm to 0.10.0 by @junkdog in [#140](https://github.com/ratatui/ratzilla/pull/140)
30+
- _(deps)_ Bump beamterm to 0.9.0 by @junkdog in [#139](https://github.com/ratatui/ratzilla/pull/139)
31+
- _(deps)_ Bump beamterm to 0.8.0 from 0.7.0 by @junkdog in [#130](https://github.com/ratatui/ratzilla/pull/130)
32+
33+
**Full Changelog**: https://github.com/ratatui/ratzilla/compare/0.2.0...0.2.1
34+
35+
<!-- generated by git-cliff -->
36+
537
## 0.2.0 - 2025-09-28
638

739
We are excited to announce the 0.2.0 release of Ratzilla! 🎉

Cargo.lock

Lines changed: 74 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ratzilla"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "Build terminal-themed web applications with Ratatui and WebAssembly"
55
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
66
license = "MIT OR Apache-2.0"
@@ -40,10 +40,10 @@ web-sys = { version = "0.3.81", features = [
4040
compact_str = "0.9.0"
4141
ratatui = { version = "0.30", default-features = false, features = ["all-widgets", "layout-cache"] }
4242
console_error_panic_hook = "0.1.7"
43-
thiserror = "2.0.12"
43+
thiserror = "2.0.18"
4444
bitvec = { version = "1.0.1", default-features = false, features = ["alloc", "std"] }
4545
beamterm-renderer = "0.10.0"
4646
unicode-width = "0.2.2"
4747

4848
[dev-dependencies]
49-
wasm-bindgen-test = "0.3.56"
49+
wasm-bindgen-test = "0.3.58"

src/backend/utils.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ pub(crate) fn create_span(document: &Document, cell: &Cell) -> Result<Element, E
3131
}
3232

3333
/// Creates a new `<a>` element with the given cells.
34+
#[allow(dead_code)]
3435
pub(crate) fn create_anchor(document: &Document, cells: &[Cell]) -> Result<Element, Error> {
3536
let anchor = document.create_element("a")?;
3637
anchor.set_attribute(

templates/simple/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ edition = "2021"
88
[dependencies]
99
ratatui = { version = "0.29.0", default-features = false }
1010
color-eyre = "0.6.5"
11-
ratzilla = "0.1.0"
11+
ratzilla = "0.2.0"

0 commit comments

Comments
 (0)