packages feed

conduit 1.2.13 → 1.2.13.1

raw patch · 5 files changed

+5/−4 lines, 5 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ChangeLog.md view
@@ -1,3 +1,7 @@+## 1.2.13.1++* Remove the `Safe` language pragma [#353](https://github.com/snoyberg/conduit/issues/353)+ ## 1.2.13  * Add `Semigroup` instances [#345](https://github.com/snoyberg/conduit/pull/345)
Data/Conduit.hs view
@@ -1,7 +1,6 @@ {-# LANGUAGE RankNTypes #-} {-# LANGUAGE DeriveFunctor #-} {-# LANGUAGE FlexibleContexts #-}-{-# LANGUAGE Safe #-} -- | If this is your first time with conduit, you should probably start with -- the tutorial: -- <https://github.com/snoyberg/conduit#readme>.
Data/Conduit/Internal.hs view
@@ -1,4 +1,3 @@-{-# LANGUAGE Safe #-} {-# OPTIONS_HADDOCK not-home #-} module Data.Conduit.Internal     ( -- * Pipe
Data/Conduit/Lift.hs view
@@ -1,5 +1,4 @@ {-# LANGUAGE RankNTypes #-}-{-# LANGUAGE Safe #-} -- | Allow monad transformers to be run\/eval\/exec in a section of conduit -- rather then needing to run across the whole conduit.  The circumvents many -- of the problems with breaking the monad transformer laws.  For more
conduit.cabal view
@@ -1,5 +1,5 @@ Name:                conduit-Version:             1.2.13+Version:             1.2.13.1 Synopsis:            Streaming data processing library. description:     `conduit` is a solution to the streaming data problem, allowing for production,