potoki-core 2.2.5.2 → 2.2.5.3
raw patch · 3 files changed
+3/−8 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- library/Potoki/Core/Transform/Attoparsec.hs +2/−2
- library/Potoki/Core/Transform/Concurrency.hs +0/−5
- potoki-core.cabal +1/−1
library/Potoki/Core/Transform/Attoparsec.hs view
@@ -94,7 +94,7 @@ parseLineBytesConcurrently :: Int -> K.Parser a -> Transform ByteString (Either Text a) parseLineBytesConcurrently concurrency parser = extractLines >>> bufferize concurrency >>>- concurrently concurrency (arr (mapLeft fromString . K.parseOnly parser))+ concurrentlyUnsafe concurrency (arr (mapLeft fromString . K.parseOnly parser)) {-| Lift an Attoparsec ByteString parser to a transform,@@ -104,4 +104,4 @@ parseNonEmptyLineBytesConcurrently :: Int -> K.Parser a -> Transform ByteString (Either Text a) parseNonEmptyLineBytesConcurrently concurrency parser = extractLinesWithoutTrail >>> filter (not . ByteString.null) >>> bufferize concurrency >>>- concurrently concurrency (arr (mapLeft fromString . K.parseOnly parser))+ concurrentlyUnsafe concurrency (arr (mapLeft fromString . K.parseOnly parser))
library/Potoki/Core/Transform/Concurrency.hs view
@@ -1,9 +1,4 @@ module Potoki.Core.Transform.Concurrency-(- bufferize,- concurrently,- async,-) where import Potoki.Core.Prelude hiding (take, takeWhile, filter)
potoki-core.cabal view
@@ -1,7 +1,7 @@ name: potoki-core version:- 2.2.5.2+ 2.2.5.3 synopsis: Low-level components of "potoki" description: