diff --git a/CHANGELOG.md b/CHANGELOG.md index b883358a..aa3aa26d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ NOTE: [`epaint`](crates/epaint/CHANGELOG.md), [`eframe`](crates/eframe/CHANGELOG ## Unreleased + + +## 0.20.1 - 2022-12-11 - Fix key-repeat ### Changed 🔧 * `InputState`: all press functions again include key repeates (like in egui 0.19) ([#2429](https://github.com/emilk/egui/pull/2429)). diff --git a/Cargo.lock b/Cargo.lock index d0d8f48b..e53f0a93 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1336,7 +1336,7 @@ dependencies = [ [[package]] name = "egui" -version = "0.20.0" +version = "0.20.1" dependencies = [ "accesskit", "ahash 0.8.2", diff --git a/crates/egui/Cargo.toml b/crates/egui/Cargo.toml index 9b454bb3..1920a855 100644 --- a/crates/egui/Cargo.toml +++ b/crates/egui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui" -version = "0.20.0" +version = "0.20.1" authors = ["Emil Ernerfeldt "] description = "An easy-to-use immediate mode GUI that runs on both web and native" edition = "2021"