Skip to content

Commit 9dc03e1

Browse files
committed
Upgrade to Stackage LTS@8.8
1 parent 548b576 commit 9dc03e1

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

app/Main.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ module Main where
22

33
import Data.Version
44

5+
import Data.Semigroup
56
import Options.Applicative hiding (ParseError)
67
import System.Console.Shell
78
import System.Console.Shell.ShellMonad

lambda-calculator.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ library
2626
Language.SystemF.Expression,
2727
Language.SystemF.Parser,
2828
Language.SystemF.TypeCheck
29-
build-depends: base <= 5,
29+
build-depends: base >= 4.9,
3030
containers,
3131
parsec
3232
default-language: Haskell2010
@@ -36,9 +36,9 @@ executable lambda-calculator
3636
main-is: Main.hs
3737
other-modules: Paths_lambda_calculator
3838
ghc-options: -threaded -rtsopts -with-rtsopts=-N
39-
build-depends: base,
39+
build-depends: base >= 4.9,
4040
lambda-calculator,
41-
optparse-applicative < 0.13,
41+
optparse-applicative >= 0.13,
4242
Shellac,
4343
Shellac-readline
4444
default-language: Haskell2010

stack.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ packages:
55
extra-deps:
66
- Shellac-0.9.9
77
- Shellac-readline-0.9.9
8-
resolver: lts-7.14
8+
resolver: lts-8.8

0 commit comments

Comments
 (0)