diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
 # Changelog
 
+- 0.8.3.0 (2019-09-07)
+    * Fix test failure again, and ensure that it works for multiple pandoc
+      versions by slightly modifying test input
+    * Include pandoc version info in `patat --version`
+
 - 0.8.2.5 (2019-08-12)
     * Fix test failure caused by slightly different pandoc output for lists
 
diff --git a/patat.cabal b/patat.cabal
--- a/patat.cabal
+++ b/patat.cabal
@@ -1,5 +1,5 @@
 Name:                patat
-Version:             0.8.2.5
+Version:             0.8.3.0
 Synopsis:            Terminal-based presentations using Pandoc
 Description:         Terminal-based presentations using Pandoc.
 License:             GPL-2
diff --git a/src/Main.hs b/src/Main.hs
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -26,6 +26,7 @@
                                                getModificationTime)
 import           System.Exit                  (exitFailure, exitSuccess)
 import qualified System.IO                    as IO
+import qualified Text.Pandoc                  as Pandoc
 import qualified Text.PrettyPrint.ANSI.Leijen as PP
 
 
@@ -116,6 +117,7 @@
 
     when (oVersion options) $ do
         putStrLn (showVersion Paths_patat.version)
+        putStrLn $ "Using pandoc: " ++ Pandoc.pandocVersion
         exitSuccess
 
     filePath <- case oFilePath options of
