packages feed

haskeline 0.8.0.0 → 0.8.0.1

raw patch · 2 files changed

+19/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Changelog view
@@ -1,3 +1,6 @@+Changed in version 0.8.0.1:+   * Add a Cabal flag to disable the example executable as well as+     the test that uses it. Changed in version 0.8.0.0:    * Breaking changes:      * Add a `MonadFail` instance for `InputT`.
haskeline.cabal view
@@ -1,6 +1,6 @@ Name:           haskeline Cabal-Version:  >=1.10-Version:        0.8.0.0+Version:        0.8.0.1 Category:       User Interfaces License:        BSD3 License-File:   LICENSE@@ -38,6 +38,13 @@     Default: True     Manual: True +-- Help the GHC build by making it possible to disable the extra binary.+-- TODO: Make GHC handle packages with both a library and an executable.+flag examples+    Description: Enable executable components used for tests.+    Default: True+    Manual: True+ Library     -- We require ghc>=7.4.1 (base>=4.5) to use the base library encodings, even     -- though it was implemented in earlier releases, due to GHC bug #5436 which@@ -117,8 +124,12 @@     hs-source-dirs: tests     Default-Language: Haskell98 -    if os(windows)+    if os(windows) {         buildable: False+    }+    if !flag(examples) {+        buildable: False+    }     Main-Is:    Unit.hs     Build-depends: base, containers, text, bytestring, HUnit, process, unix     Other-Modules: RunTTY, Pty@@ -126,6 +137,9 @@  -- The following program is used by unit tests in `tests` executable Executable haskeline-examples-Test+    if !flag(examples) {+        buildable: False+    }     Build-depends: base, containers, haskeline     Default-Language: Haskell2010     hs-source-dirs: examples