From d6d9ebb8815c7143712d95faef7a7aab66c33b0d Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Thu, 20 Aug 2020 16:11:59 +0200 Subject: [PATCH] migrate to new optparse --- adiff.cabal | 2 +- src/Version.hs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/adiff.cabal b/adiff.cabal index 19f0dee..c36c5d1 100644 --- a/adiff.cabal +++ b/adiff.cabal @@ -52,7 +52,7 @@ executable adiff build-depends: base ^>=4.13.0.0, mmap ^>=0.5, regex-tdfa ^>= 1.3, - optparse-applicative ^>=0.15, + optparse-applicative ^>=0.16, bytestring ^>= 0.10.12, vector ^>=0.12, utf8-string ^>=1.0 diff --git a/src/Version.hs b/src/Version.hs index 427b7a2..91985ee 100644 --- a/src/Version.hs +++ b/src/Version.hs @@ -18,5 +18,5 @@ versionOption prog = helperOption :: Parser (a -> a) helperOption = abortOption - ShowHelpText + (ShowHelpText Nothing) (long "help" <> short 'h' <> help "Show this help text")