diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b50e92..08c849a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.5](https://github.com/jondkinney/hyprcorrect/compare/v0.2.4...v0.2.5) - 2026-06-04 + +### Fixed + +- *(prefs)* enable vsync to cap the kinetic-scroll render rate + +### Other + +- update Cargo.lock dependencies +- bump kanso to 0.1.3 (over-scroll fixes + final tune) + ## [0.2.4](https://github.com/jondkinney/hyprcorrect/compare/v0.2.3...v0.2.4) - 2026-06-04 ### Other diff --git a/Cargo.lock b/Cargo.lock index 983f061..d0c2507 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1463,7 +1463,7 @@ dependencies = [ [[package]] name = "hyprcorrect" -version = "0.2.4" +version = "0.2.5" dependencies = [ "clap", "env_logger", @@ -1475,7 +1475,7 @@ dependencies = [ [[package]] name = "hyprcorrect-core" -version = "0.2.4" +version = "0.2.5" dependencies = [ "async-trait", "directories", @@ -1491,7 +1491,7 @@ dependencies = [ [[package]] name = "hyprcorrect-platform" -version = "0.2.4" +version = "0.2.5" dependencies = [ "evdev", "hyprcorrect-core", @@ -1503,7 +1503,7 @@ dependencies = [ [[package]] name = "hyprcorrect-ui" -version = "0.2.4" +version = "0.2.5" dependencies = [ "eframe", "egui", diff --git a/Cargo.toml b/Cargo.toml index ee6a8ed..99f55af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ ] [workspace.package] -version = "0.2.4" +version = "0.2.5" edition = "2024" authors = ["Jon Kinney "] license = "MIT OR Apache-2.0" @@ -18,9 +18,9 @@ rust-version = "1.85" [workspace.dependencies] # Internal crates. Used directly (no `package = ` rename) — unlike # vernier, the bare `hyprcorrect-*` names are free on crates.io. -hyprcorrect-core = { path = "crates/hyprcorrect-core", version = "0.2.4" } -hyprcorrect-platform = { path = "crates/hyprcorrect-platform", version = "0.2.4" } -hyprcorrect-ui = { path = "crates/hyprcorrect-ui", version = "0.2.4" } +hyprcorrect-core = { path = "crates/hyprcorrect-core", version = "0.2.5" } +hyprcorrect-platform = { path = "crates/hyprcorrect-platform", version = "0.2.5" } +hyprcorrect-ui = { path = "crates/hyprcorrect-ui", version = "0.2.5" } thiserror = "2" env_logger = "0.11"