diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a56cd3..ae4f8c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ 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.17.1] - 2026-01-29 + +### Fixed + +- Set correct rust-version to 1.89 + +### Changed + +- Update all dependencies to latest versions + ## [0.17.0] - 2026-01-29 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 87690c0..223d42a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,29 +1,29 @@ [package] name = "cosmic-text" description = "Pure Rust multi-line text handling" -version = "0.17.0" +version = "0.17.1" authors = ["Jeremy Soller "] edition = "2021" license = "MIT OR Apache-2.0" documentation = "https://docs.rs/cosmic-text/latest/cosmic_text/" repository = "https://github.com/pop-os/cosmic-text" -rust-version = "1.80" +rust-version = "1.89" [dependencies] bitflags = "2.10.0" core_maths = { version = "0.1.1", optional = true } cosmic_undo_2 = { version = "0.2.0", optional = true } fontdb = { version = "0.23", default-features = false } -harfrust = { version = "0.2.1", default-features = false } +harfrust = { version = "0.5.0", default-features = false } hashbrown = { version = "0.16", optional = true, default-features = false } libm = { version = "0.2.16", optional = true } linebender_resource_handle = { version = "0.1.1", default-features = false } log = "0.4.29" modit = { version = "0.1.5", optional = true } -rangemap = "1.6.0" +rangemap = "1.7.1" rustc-hash = { version = "2.1.1", default-features = false } self_cell = "1.2.2" -skrifa = { version = "0.36.0", default-features = false } +skrifa = { version = "0.40.0", default-features = false } smol_str = { version = "0.3.2", default-features = false } syntect = { version = "5.3.0", optional = true } sys-locale = { version = "0.3.2", optional = true } @@ -76,7 +76,7 @@ members = ["examples/*"] [dev-dependencies] tiny-skia = "0.11.4" -criterion = { version = "0.7.0", default-features = false, features = [ +criterion = { version = "0.8.1", default-features = false, features = [ "cargo_bench_support", ] }