diff --git a/CHANGELOG.md b/CHANGELOG.md
index f6eaa41..71b913a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,6 @@
# Changelog
-## unreleased
+## 1.2.0 (2022-02-26)
* Add command-line options for move and scroll speed
* Add hardware mouse support
diff --git a/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml b/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml
index edab8b7..101576d 100644
--- a/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml
+++ b/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml
@@ -19,6 +19,19 @@
https://github.com/Unrud/remote-touchpad
Unrud
+
+
+
+ - Add command-line options for move and scroll speed
+ - Add hardware mouse support
+ - Limit update rate
+ - Windows: Reverse vertical scroll direction
+ - Show error message if compiled without controller
+ - Don't show disabled controllers in "unsupported platform" error message
+ - Switch from go-bindata-assetfs to go:embed
+
+
+
- https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.1.0/screenshots/1.png
+ https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.2.0/screenshots/1.png
- https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.1.0/screenshots/2.png
+ https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.2.0/screenshots/2.png
- https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.1.0/screenshots/3.png
+ https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.2.0/screenshots/3.png
- https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.1.0/screenshots/4.png
+ https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.2.0/screenshots/4.png
diff --git a/main.go b/main.go
index 014849f..92fb9cc 100644
--- a/main.go
+++ b/main.go
@@ -45,7 +45,7 @@ const (
authenticationRateBurst int = 10
challengeLength int = 8
defaultBind string = ":0"
- version string = "1.1.0"
+ version string = "1.2.0"
prettyAppName string = "Remote Touchpad"
)