diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,17 @@
 # Changelog
 
+- 0.8.4.3 (2020-01-21)
+    * Fix Haddock syntax in some comments (contribution by Asad Saeeduddin)
+
+- 0.8.4.2 (2020-01-18)
+    * Add builds for Mac OS
+    * Refactor CircleCI config & Makefile
+
+- 0.8.4.1 (2019-10-29)
+    * Bump CircleCI configuration
+    * Bump release script
+    * Add slide seeking to `--help` output
+
 - 0.8.4.0 (2019-10-09)
     * Add slide seeking (enter slide number + `enter`)
     * Fix turning tty echo off/on during presentation
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -60,8 +60,9 @@
 - Debian: <https://packages.debian.org/unstable/patat>
 - Ubuntu: <https://packages.ubuntu.com/bionic/patat>
 - openSUSE: <https://build.opensuse.org/package/show/openSUSE:Factory:ARM/patat>
+- Fedora: <https://src.fedoraproject.org/rpms/patat>
 
-You can also find generic linux binaries here:
+You can also find generic Linux and Mac OS binaries here:
 <https://github.com/jaspervdj/patat/releases>.
 
 ### From source
diff --git a/lib/Patat/Main.hs b/lib/Patat/Main.hs
--- a/lib/Patat/Main.hs
+++ b/lib/Patat/Main.hs
@@ -86,6 +86,7 @@
         , "- Go backward 10 slides:  k, up"
         , "- First slide:            0"
         , "- Last slide:             G"
+        , "- Jump to slide N:        N followed by enter"
         , "- Reload file:            r"
         , "- Quit:                   q"
         ]
@@ -177,13 +178,13 @@
 -- on the terminal.  Tries to restore the original state of the terminal as much
 -- as possible.
 interactively
-    -- | Reads a command from stdin (or from some other IO).  This will be
-    -- interrupted by 'killThread' when the application finishes.
     :: (IO.Handle -> IO a)
-    -- | Application to run.
+    -- ^ Reads a command from stdin (or from some other IO).  This will be
+    -- interrupted by 'killThread' when the application finishes.
     -> (Chan a -> IO ())
-    -- | Returns when application finishes.
+    -- ^ Application to run.
     -> IO ()
+    -- ^ Returns when application finishes.
 interactively reader app = bracket setup teardown $ \(_, _, _, chan) -> app chan
   where
     setup = do
diff --git a/lib/Patat/Theme.hs b/lib/Patat/Theme.hs
--- a/lib/Patat/Theme.hs
+++ b/lib/Patat/Theme.hs
@@ -224,7 +224,7 @@
     , name <- maybeToList (sgrToString sgr)
     ]
   where
-    -- | It doesn't really matter if we generate "too much" SGRs here since
+    -- It doesn't really matter if we generate "too much" SGRs here since
     -- 'sgrToString' will only pick the ones we support.
     knownSgrs =
         [ Ansi.SetColor l i c
diff --git a/patat.cabal b/patat.cabal
--- a/patat.cabal
+++ b/patat.cabal
@@ -1,5 +1,5 @@
 Name:                patat
-Version:             0.8.4.0
+Version:             0.8.4.3
 Synopsis:            Terminal-based presentations using Pandoc
 Description:         Terminal-based presentations using Pandoc.
 License:             GPL-2
