diff options
author | JasperVanDerJeugt <> | 2019-09-07 11:26:00 (GMT) |
---|---|---|
committer | hdiff <hdiff@hdiff.luite.com> | 2019-09-07 11:26:00 (GMT) |
commit | c78dda812788f59bdff0a50281abee00039bc333 (patch) | |
tree | 822975c707a595d4bfceec93d4d0deeab5f836e3 | |
parent | 0f775db6e5560176aee9799593a7cc883d344553 (diff) |
version 0.8.3.00.8.3.0
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | patat.cabal | 2 | ||||
-rw-r--r-- | src/Main.hs | 2 |
3 files changed, 8 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d0429f9..8a5eb9a 100644 --- 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 index 072ef02..2f70a36 100644 --- 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 index f45ae35..b7dfa27 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -26,6 +26,7 @@ import System.Directory (doesFileExist, 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 @@ main = do when (oVersion options) $ do putStrLn (showVersion Paths_patat.version) + putStrLn $ "Using pandoc: " ++ Pandoc.pandocVersion exitSuccess filePath <- case oFilePath options of |