summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Ernerfeldt <emil.ernerfeldt@gmail.com>2022-12-11 16:59:54 +0100
committerEmil Ernerfeldt <emil.ernerfeldt@gmail.com>2022-12-11 16:59:54 +0100
commitd7189d69f6fa364363d271889a30f2aa78cdd392 (patch)
tree628aab6c6328d6b31ea212619da5aa546362bcc7
parent2713f60f5be290bf9dc1461562a8875afe5a028f (diff)
Release 0.20.1 - Fix key-repeat0.20.1
-rw-r--r--CHANGELOG.md3
-rw-r--r--Cargo.lock2
-rw-r--r--crates/egui/Cargo.toml2
3 files changed, 5 insertions, 2 deletions
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 <emil.ernerfeldt@gmail.com>"]
description = "An easy-to-use immediate mode GUI that runs on both web and native"
edition = "2021"