diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -3,10 +3,22 @@
 It allows you to easily send your status via DBus using XMonad's DynamicLog to any application that can execute custom scripts.
 It can be used to easily display XMonad status in [polybar](https://github.com/jaagr/polybar)
 
-## Building
+## Installation
 
+### With Stack
+
+```bash
     stack build
+```
 
+### With AUR
+
+Use your favourite [AUR helper](https://wiki.archlinux.org/title/AUR_helpers) to install on ArchLinux-based distribution:
+
+```bash
+    pikaur -S xmonad-dbus-git
+```
+
 ## Running
 
 ```bash
@@ -26,9 +38,10 @@
     import XMonad
     import XMonad.Hooks.DynamicLog
     import qualified XMonad.DBus as D
+    import qualified DBus.Client as DC
 
     -- Override the PP values as you would like (see XMonad.Hooks.DynamicLog documentation)
-    myLogHook :: D.Client -> PP
+    myLogHook :: DC.Client -> PP
     myLogHook dbus = def { ppOutput = D.send dbus }
 
     main :: IO ()
diff --git a/xmonad-dbus.cabal b/xmonad-dbus.cabal
--- a/xmonad-dbus.cabal
+++ b/xmonad-dbus.cabal
@@ -7,13 +7,13 @@
 -- hash: e09852654ab4face57c2b914858976e2a3f163d7aafec5df933a60de1b8baa90
 
 name:           xmonad-dbus
-version:        0.1.0.1
+version:        0.1.0.2
 description:    Please see the README on Github at <https://github.com/githubuser/xmonad-dbus#readme>
 homepage:       https://github.com/troydm/xmonad-dbus#readme
 bug-reports:    https://github.com/troydm/xmonad-dbus/issues
 author:         Dmitry Geurkov
 maintainer:     d.geurkov@gmail.com
-copyright:      2018 Dmitry Geurkov
+copyright:      2018-2023 Dmitry Geurkov
 license:        BSD3
 license-file:   LICENSE
 build-type:     Simple
