Skip to content

Commit 9d4bcf8

Browse files
authored
Merge pull request #519 from rhendric/rhendric/noncanonical
Remove noncanonical definitions
2 parents a2ce960 + bc08d97 commit 9d4bcf8

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

conduit/ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# ChangeLog for conduit
22

3+
## 1.3.6.1
4+
5+
* Forward compatibility with `-Wnoncanonical-monad-instances` becoming an error
6+
37
## 1.3.6
48

59
* Avoid dropping upstream items in `mergeSource` [#513](https://github.com/snoyberg/conduit/pull/513)

conduit/conduit.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: conduit
2-
Version: 1.3.6
2+
Version: 1.3.6.1
33
Synopsis: Streaming data processing library.
44
description:
55
`conduit` is a solution to the streaming data problem, allowing for production,

conduit/src/Data/Conduit/Internal/Conduit.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ instance Applicative (ConduitT i o m) where
148148
{-# INLINE pure #-}
149149
(<*>) = ap
150150
{-# INLINE (<*>) #-}
151-
(*>) = (>>)
151+
x *> y = x >>= \_ -> y
152152
{-# INLINE (*>) #-}
153153

154154
instance Monad (ConduitT i o m) where

0 commit comments

Comments
 (0)