Skip to content

Commit

Permalink
Bump upper version bounds on optparse-applicative
Browse files Browse the repository at this point in the history
  • Loading branch information
ennocramer committed Sep 16, 2023
1 parent 6606da7 commit 25bbcfd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Floskell 0.11.0 (unreleased)

* Fix alignment of non-ASCII identifiers
* Add support for building with aeson-2.2.0.0 and optparse-applicative-0.18.1.0

# Floskell 0.10.8 (2023-08-12)

Expand Down
3 changes: 2 additions & 1 deletion floskell.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,12 @@ executable floskell
base >=4.9 && <4.19,
floskell -any,
aeson-pretty >=0.8.2 && <0.9,
ansi-wl-pprint >=0.6.6 && <1.1,
bytestring >=0.10.8.1 && <0.13,
directory >=1.2.6.2 && <1.4,
ghc-prim >=0.5.0.0 && <0.11,
haskell-src-exts >=1.19 && <1.24,
optparse-applicative >=0.12.1.0 && <0.18,
optparse-applicative >=0.12.1.0 && <0.19,
text >=1.2.2.2 && <2.2

test-suite floskell-test
Expand Down
3 changes: 2 additions & 1 deletion src/main/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ import Options.Applicative
( ParseError(..), abortOption, argument, execParser, footerDoc
, fullDesc, header, help, helper, hidden, info, long, metavar
, option, progDesc, short, str, switch )
import qualified Options.Applicative.Help.Pretty as PP

import Paths_floskell ( version )

Expand All @@ -45,6 +44,8 @@ import System.Directory
import System.IO

Check warning on line 44 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 8.8 (ubuntu-latest)

The import of ‘FilePath’ from module ‘System.IO’ is redundant

Check warning on line 44 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 8.10 (ubuntu-latest)

The import of ‘FilePath’ from module ‘System.IO’ is redundant

Check warning on line 44 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 8.10 (macOS-latest)

The import of ‘FilePath’ from module ‘System.IO’ is redundant

Check warning on line 44 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 8.8 (macOS-latest)

The import of ‘FilePath’ from module ‘System.IO’ is redundant
( FilePath, hClose, hFlush, openTempFile, stdout )

Check warning on line 45 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 9.6 (ubuntu-latest)

The import of ‘FilePath’ from module ‘System.IO’ is redundant

Check warning on line 45 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 9.4 (ubuntu-latest)

The import of ‘FilePath’ from module ‘System.IO’ is redundant

Check warning on line 45 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 9.0 (ubuntu-latest)

The import of ‘FilePath’ from module ‘System.IO’ is redundant

Check warning on line 45 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 9.2 (ubuntu-latest)

The import of ‘FilePath’ from module ‘System.IO’ is redundant

Check warning on line 45 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 9.2 (macOS-latest)

The import of ‘FilePath’ from module ‘System.IO’ is redundant

Check warning on line 45 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 9.0 (macOS-latest)

The import of ‘FilePath’ from module ‘System.IO’ is redundant

Check warning on line 45 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 9.6 (macOS-latest)

The import of ‘FilePath’ from module ‘System.IO’ is redundant

Check warning on line 45 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 9.4 (macOS-latest)

The import of ‘FilePath’ from module ‘System.IO’ is redundant

import qualified Text.PrettyPrint.ANSI.Leijen as PP

Check warning on line 47 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 8.4 (ubuntu-latest)

Module ‘Text.PrettyPrint.ANSI.Leijen’ is deprecated:

Check warning on line 47 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 9.6 (ubuntu-latest)

Module ‘Text.PrettyPrint.ANSI.Leijen’ is deprecated:

Check warning on line 47 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 8.8 (ubuntu-latest)

Module ‘Text.PrettyPrint.ANSI.Leijen’ is deprecated:

Check warning on line 47 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 8.10 (ubuntu-latest)

Module ‘Text.PrettyPrint.ANSI.Leijen’ is deprecated:

Check warning on line 47 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 9.4 (ubuntu-latest)

Module ‘Text.PrettyPrint.ANSI.Leijen’ is deprecated:

Check warning on line 47 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 8.6 (ubuntu-latest)

Module ‘Text.PrettyPrint.ANSI.Leijen’ is deprecated:

Check warning on line 47 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 9.0 (ubuntu-latest)

Module ‘Text.PrettyPrint.ANSI.Leijen’ is deprecated:

Check warning on line 47 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 8.6 (macOS-latest)

Module ‘Text.PrettyPrint.ANSI.Leijen’ is deprecated:

Check warning on line 47 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 8.10 (macOS-latest)

Module ‘Text.PrettyPrint.ANSI.Leijen’ is deprecated:

Check warning on line 47 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 9.2 (ubuntu-latest)

Module ‘Text.PrettyPrint.ANSI.Leijen’ is deprecated:

Check warning on line 47 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 8.8 (macOS-latest)

Module ‘Text.PrettyPrint.ANSI.Leijen’ is deprecated:

Check warning on line 47 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 9.2 (macOS-latest)

Module ‘Text.PrettyPrint.ANSI.Leijen’ is deprecated:

Check warning on line 47 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 9.0 (macOS-latest)

Module ‘Text.PrettyPrint.ANSI.Leijen’ is deprecated:

Check warning on line 47 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 9.6 (macOS-latest)

Module ‘Text.PrettyPrint.ANSI.Leijen’ is deprecated:

Check warning on line 47 in src/main/Main.hs

View workflow job for this annotation

GitHub Actions / GHC 9.4 (macOS-latest)

Module ‘Text.PrettyPrint.ANSI.Leijen’ is deprecated:

-- | Program options.
data Options = Options { optStyle :: Maybe String
, optLanguage :: Maybe String
Expand Down

0 comments on commit 25bbcfd

Please sign in to comment.