haskeline 0.6.3 → 0.6.3.1
raw patch · 3 files changed
+8/−3 lines, 3 filesdep ~directoryPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: directory
API changes (from Hackage documentation)
Files
- CHANGES +5/−0
- System/Console/Haskeline/Backend/Posix.hsc +1/−1
- haskeline.cabal +2/−2
CHANGES view
@@ -1,3 +1,8 @@+Changed in version 0.6.3.1:+ * Updated contraints for ghc-7.0.1.++ * Fix building on ghc-6.10.+ Changed in version 0.6.3: * #111: Correct width calculations when the prompt contains newlines.
System/Console/Haskeline/Backend/Posix.hsc view
@@ -253,7 +253,7 @@ #else -- hWaitForInput doesn't work with -threaded on ghc < 6.10 -- (#2363 in ghc's trac)-blockUntilInput h = unsafeHandleToFd h >>= threadWaitRead+blockUntilInput h = unsafeHandleToFD h >>= threadWaitRead . Fd #endif -- try to convert to the locale encoding using iconv.
haskeline.cabal view
@@ -1,6 +1,6 @@ Name: haskeline Cabal-Version: >=1.6-Version: 0.6.3+Version: 0.6.3.1 Category: User Interfaces License: BSD3 License-File: LICENSE@@ -50,7 +50,7 @@ } else { if impl(ghc>=6.11) {- Build-depends: base >=4.1 && < 4.4, containers>=0.1 && < 0.5, directory==1.0.*,+ Build-depends: base >=4.1 && < 4.4, containers>=0.1 && < 0.5, directory>=1.0 && < 1.2, bytestring==0.9.* } else {