From 34906182069ae0fbb411c3e70dd6c53db3130eb9 Mon Sep 17 00:00:00 2001 From: Stephen Diehl Date: Fri, 11 Dec 2015 12:13:00 -0500 Subject: [PATCH] relax upper bound --- 001_basics.md | 8 ++++---- write-you-a-haskell.cabal | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/001_basics.md b/001_basics.md index 908f267..6aa55b0 100644 --- a/001_basics.md +++ b/001_basics.md @@ -879,8 +879,8 @@ str :: T.Text str = "bar" ``` -Cabal ------ +Cabal & Stack +------------- To set up an existing project with a sandbox, run: @@ -921,8 +921,8 @@ lecture notes. * [Real World Haskell](http://www.amazon.com/Real-World-Haskell-Bryan-OSullivan/dp/05965149800) by Bryan O'Sullivan, Don Stewart, and John Goerzen There are some books as well, but your mileage may vary with these. Much of the -material is dated and only covers basic functional programming and not -"programming in the large". +material is dated and only covers basic programming and not "programming in the +large". * [Learn you a Haskell](http://learnyouahaskell.com/) by Miran Lipovača * [Programming in Haskell](http://www.amazon.com/gp/product/0521692695) by Graham Hutton diff --git a/write-you-a-haskell.cabal b/write-you-a-haskell.cabal index 58499fd..4e9f295 100644 --- a/write-you-a-haskell.cabal +++ b/write-you-a-haskell.cabal @@ -14,7 +14,7 @@ executable write-you-a-haskell base >= 4.7 && <4.8, pretty >= 1.1 && <1.2, containers >= 0.5 && <0.6, - transformers >= 0.3 && <0.4, + transformers >= 0.3 && <0.5, haskeline >= 0.7 && <0.8, pandoc -any build-tools: alex, happy