concurrent-output 1.10.9 → 1.10.10
raw patch · 3 files changed
+10/−3 lines, 3 filesdep ~ansi-terminalPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: ansi-terminal
API changes (from Hackage documentation)
Files
- CHANGELOG +7/−0
- System/Console/Regions.hs +1/−1
- concurrent-output.cabal +2/−2
CHANGELOG view
@@ -1,3 +1,10 @@+concurrent-output (1.10.10) unstable; urgency=medium++ * Allow ansi-terminal-0.9.+ * Fix a build warning.++ -- Joey Hess <id@joeyh.name> Sun, 12 May 2019 16:29:18 -0400+ concurrent-output (1.10.9) unstable; urgency=medium * waitDisplayChange would deadlock if the STM action passed to it did not
System/Console/Regions.hs view
@@ -467,7 +467,7 @@ waitDisplayChange a = do c <- atomically $ dupTChan displayUpdateNotifier bv <- newEmptyTMVarIO- setbarrier bv `concurrently` waitchange c bv+ _ <- setbarrier bv `concurrently` waitchange c bv snd <$> atomically (readTMVar bv) where setbarrier bv = atomically $ do
concurrent-output.cabal view
@@ -1,5 +1,5 @@ Name: concurrent-output-Version: 1.10.9+Version: 1.10.10 Cabal-Version: >= 1.8 License: BSD2 Maintainer: Joey Hess <id@joeyh.name>@@ -38,7 +38,7 @@ , directory (>= 1.2.0 && < 1.4.0) , transformers (>= 0.3.0 && < 0.6.0) , exceptions (>= 0.6.0 && < 0.11.0)- , ansi-terminal (>= 0.6.0 && < 0.9.0)+ , ansi-terminal (>= 0.9.1 && < 0.10.0) , terminal-size (>= 0.3.0 && < 0.4.0) Exposed-Modules: System.Console.Concurrent