patat 0.8.2.5 → 0.8.3.0
raw patch · 3 files changed
+8/−1 lines, 3 files
Files
- CHANGELOG.md +5/−0
- patat.cabal +1/−1
- src/Main.hs +2/−0
CHANGELOG.md view
@@ -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
patat.cabal view
@@ -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
src/Main.hs view
@@ -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