Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.9.1] — 2026-02-02

- Use ICU4X instead of Swash for text analysis (#119, #122)
- Support Emojis (#121, #122)

## [0.9.0] — 2026-01-26

- Bump MSRV to 1.88 (#104)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kas-text"
version = "0.9.0"
version = "0.9.1"
authors = ["Diggory Hardy <git@dhardy.name>"]
edition = "2024"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/display/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ fn size_of_elts() {
#[cfg(not(feature = "num_glyphs"))]
assert_eq!(size_of::<TextDisplay>(), 200);
#[cfg(feature = "num_glyphs")]
assert_eq!(size_of::<TextDisplay>(), 216);
assert_eq!(size_of::<TextDisplay>(), 208);
}

impl Default for TextDisplay {
Expand Down
Loading