pipes-cliff 0.10.0.0 → 0.10.0.2
raw patch · 4 files changed
+7/−9 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- lib/Pipes/Cliff.hs +0/−3
- lib/Pipes/Cliff/Core.hs +1/−1
- lib/Pipes/Cliff/Examples.hs +4/−3
- pipes-cliff.cabal +2/−2
lib/Pipes/Cliff.hs view
@@ -118,9 +118,6 @@ combination of standard input, standard output, and standard error. Use the 'NonPipe' type to describe what you want to do with streams you do NOT want to create a stream for. For example, to create a-subprocess that does not create a Pipe for any of the standard-streams, use 'pipeNone'. You must describe what you want done with-standard input, standard output, and standard error. To create a subprocess that creates a 'Proxy' for standard input and standard output, use 'pipeInputOutput'. You must describe what you want done with standard error. A 'Producer' is returned for standard output
lib/Pipes/Cliff/Core.hs view
@@ -186,7 +186,7 @@ , handler :: Oopsie -> IO () -- ^ Whenever an IO exception arises during the course of various- -- IO actios, the exception is caught and placed into an 'Oopsie'+ -- IO actions, the exception is caught and placed into an 'Oopsie' -- that indicates why and where the exception happened. The -- 'handler' determines what happens when an 'Oopsie' comes in. -- See 'Oopsie' for details.
lib/Pipes/Cliff/Examples.hs view
@@ -32,10 +32,11 @@ -- without a framework like @pipes@. produceNumbers :: Monad m => Producer BS8.ByteString m r-produceNumbers = go (0 :: Int)+produceNumbers+ = iterate' succ (0 :: Int)+ >-> P.show >-> P.map BS8.pack >-> P.map (`BS8.snoc` '\n') where- go i = yield ((BS8.pack . show $ i) `BS8.snoc` '\n')- >> go (succ i)+ iterate' nxt i = yield i >> iterate' nxt (nxt i) -- | Streams an infinite list of numbers to @less@. Shows off how -- you can use "Pipes.Cliff" even for non-finite 'Producer's. Don't
pipes-cliff.cabal view
@@ -3,11 +3,11 @@ -- http://www.github.com/massysett/cartel -- -- Script name used to generate: genCabal.hs--- Generated on: 2015-03-29 17:35:28.800812 EDT+-- Generated on: 2015-04-14 07:18:42.623619 EDT -- Cartel library version: 0.14.2.6 name: pipes-cliff-version: 0.10.0.0+version: 0.10.0.2 cabal-version: >= 1.18 license: BSD3 license-file: LICENSE