packages feed

ChannelT 0.0.0.1 → 0.0.0.2

raw patch · 3 files changed

+4/−4 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ChannelT.cabal view
@@ -1,7 +1,7 @@ name:                ChannelT-version:             0.0.0.1+version:             0.0.0.2 synopsis:            Generalized stream processors-description:         A mutual generalization of [pipes](https://hackage.haskell.org/package/pipes) and [machines](https://hackage.haskell.org/package/machines); a library for exploring a particular corner of the design space of streaming IO (and other related tasks) in Haskell.+description:         A mutual generalization of <https://hackage.haskell.org/package/pipes pipes> and <https://hackage.haskell.org/package/machines machines>; a library for exploring a particular corner of the design space of streaming IO (and other related tasks) in Haskell. license:             BSD3 license-file:        LICENSE author:              Alexander Altman
src/Control/Monad/Channel.hs view
@@ -1,4 +1,4 @@-{-# LANGUAGE Safe #-}+{-# LANGUAGE Trustworthy #-} module Control.Monad.Channel (   Channel,   ChannelT,
src/Control/Monad/Channel/Internal.hs view
@@ -1,6 +1,6 @@ {-# LANGUAGE FunctionalDependencies, PolyKinds, FlexibleContexts #-} {-# LANGUAGE ExistentialQuantification, FlexibleInstances, UndecidableInstances #-}-{-# LANGUAGE StandaloneDeriving, GeneralizedNewtypeDeriving, Trustworthy #-}+{-# LANGUAGE StandaloneDeriving, GeneralizedNewtypeDeriving #-} {-# LANGUAGE AutoDeriveTypeable, DeriveFunctor, DeriveGeneric #-} module Control.Monad.Channel.Internal (ChannelT(..), Channel, MonadChannel(..), ChannelF(..)) where import Control.Monad.Trans