diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -12,13 +12,13 @@
 
 `dl-fedora rawhide` : downloads the latest Fedora Rawhide Workstation Live iso
 
-`dl-fedora 37 silverblue` : downloads the Fedora Silverblue iso
+`dl-fedora 38 silverblue` : downloads the Fedora Silverblue iso
 
 `dl-fedora respin kde` : downloads the latest KDE Live respin
 
-`dl-fedora 36 server --arch aarch64` : will download the Server iso for armv8
+`dl-fedora 37 server --arch aarch64` : will download the Server iso for armv8
 
-`dl-fedora --run 37` : will download Fedora Workstation and boot the Live image with qemu-kvm.
+`dl-fedora --run 38` : will download Fedora Workstation and boot the Live image with qemu-kvm.
 
 `dl-fedora --local rawhide` : shows the current locally available image (as well as the latest one). With `--dryrun` it doesn't check for newest iso.
 
@@ -39,7 +39,7 @@
 ## Usage
 ```shellsession
 $ dl-fedora --version
-0.9.4
+0.9.5.1
 $ dl-fedora --help
 Fedora iso downloader
 
@@ -48,10 +48,11 @@
                  [-T|--no-http-timeout] [-l|--local] [-r|--run] [-R|--replace]
                  [(-d|--dl) | (-k|--koji) | (-m|--mirror URL)] [-a|--arch ARCH]
                  RELEASE [EDITION]
+
   Tool for downloading Fedora iso file images.
   RELEASE = release number, respin, rawhide, test (Beta), stage (RC), eln, c9s
   EDITION = {cloud,container,everything,server,workstation,silverblue,kinoite,
-             budgie,cinnamon,i3,kde,lxde,lxqt,mate,soas,sway,
+             sericea,budgie,cinnamon,i3,kde,lxde,lxqt,mate,soas,sway,
              xfce} [default: workstation]
 
   See <https://fedoraproject.org/wiki/Infrastructure/MirrorManager>
diff --git a/dl-fedora.cabal b/dl-fedora.cabal
--- a/dl-fedora.cabal
+++ b/dl-fedora.cabal
@@ -1,6 +1,6 @@
 cabal-version:       1.18
 name:                dl-fedora
-version:             0.9.5
+version:             0.9.5.1
 synopsis:            Fedora image download tool
 description:         Tool to download Fedora iso and image files
 -- can change to GPL-3.0-or-later with Cabal-2.2
@@ -29,6 +29,7 @@
                        DownloadDir
 
   build-depends:       base < 5,
+                       ansi-wl-pprint,
                        bytestring,
                        directory >= 1.2.5,
                        extra,
diff --git a/src/Main.hs b/src/Main.hs
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -25,7 +25,6 @@
 import Network.HTTP.Directory
 
 import Options.Applicative (fullDesc, header, progDescDoc)
-import qualified Options.Applicative.Help.Pretty as P
 
 import Paths_dl_fedora (version)
 
@@ -46,6 +45,7 @@
 import qualified Text.ParserCombinators.ReadP as R
 import qualified Text.ParserCombinators.ReadPrec as RP
 import Text.Regex.Posix
+import qualified Text.PrettyPrint.ANSI.Leijen as P
 
 import DownloadDir
 
