diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1f94b3b..dad3ace 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog
+## 0.0.10 (2018-10-01)
+
+ * avoid race condition when typing on X11
+
## 0.0.9 (2018-09-29)
* add multimedia keys
diff --git a/desktop/remote-touchpad.appdata.xml b/desktop/remote-touchpad.appdata.xml
index 6488c36..e226cf6 100644
--- a/desktop/remote-touchpad.appdata.xml
+++ b/desktop/remote-touchpad.appdata.xml
@@ -18,6 +18,11 @@
https://github.com/Unrud/remote-touchpad
Unrud
+
+
+ - avoid race condition when typing on X11
+
+
- add multimedia keys
@@ -72,16 +77,16 @@
- https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.9/screenshots/1.png
+ https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.10/screenshots/1.png
- https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.9/screenshots/2.png
+ https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.10/screenshots/2.png
- https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.9/screenshots/3.png
+ https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.10/screenshots/3.png
- https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.9/screenshots/4.png
+ https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.10/screenshots/4.png
diff --git a/main.go b/main.go
index 04e441b..5e83eee 100644
--- a/main.go
+++ b/main.go
@@ -45,7 +45,7 @@ const (
authenticationRateBurst int = 10
challengeLength int = 8
defaultBind string = ":0"
- version string = "0.0.9"
+ version string = "0.0.10"
)
func processCommand(plugin Plugin, command string) error {