list-t-text 0.2.0.2 → 0.2.1
raw patch · 2 files changed
+7/−10 lines, 2 filesdep ~base-preludedep ~hspecdep ~list-tPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base-prelude, hspec, list-t
API changes (from Hackage documentation)
- ListT.Text: decodeUTF8 :: Monad m => Transformation m ByteString Text
+ ListT.Text: decodeUTF8 :: Monad m => ListT m ByteString -> ListT m Text
Files
- library/ListT/Text.hs +1/−1
- list-t-text.cabal +6/−9
library/ListT/Text.hs view
@@ -13,7 +13,7 @@ -- | -- A transformation of a stream of byte-strings -- to a stream of text chunks decoded using UTF-8.-decodeUTF8 :: Monad m => Transformation m ByteString Text+decodeUTF8 :: Monad m => ListT m ByteString -> ListT m Text decodeUTF8 = loop TE.streamDecodeUtf8 where
list-t-text.cabal view
@@ -1,7 +1,7 @@ name: list-t-text version:- 0.2.0.2+ 0.2.1 synopsis: A streaming text codec category:@@ -39,18 +39,16 @@ other-modules: exposed-modules: ListT.Text- ghc-options:- -funbox-strict-fields default-extensions:- Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, ImpredicativeTypes, LambdaCase, LiberalTypeSynonyms, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators+ Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples default-language: Haskell2010 build-depends: bytestring >= 0.10 && < 0.11, text >= 1 && < 1.3,- list-t == 0.4.*,+ list-t >= 0.4 && < 2, mtl-prelude >= 1 && < 3,- base-prelude >= 0.1.19 && < 0.2+ base-prelude >= 0.1.19 && < 2 test-suite hspec@@ -63,14 +61,13 @@ ghc-options: -threaded "-with-rtsopts=-N"- -funbox-strict-fields default-extensions:- Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, ImpredicativeTypes, LambdaCase, LiberalTypeSynonyms, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators+ Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples default-language: Haskell2010 build-depends: -- - hspec == 2.1.*,+ hspec >= 2.1 && < 3, QuickCheck >= 2.6 && < 2.9, quickcheck-instances, --