Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
snoyberg committed May 22, 2023
1 parent 335d943 commit e5a49f6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions conduit/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ChangeLog for conduit

## 1.3.5

* Add `groupOn`

## 1.3.4.3

* Fix space leak in `*>` [#496](https://github.com/snoyberg/conduit/issues/496) [#497](https://github.com/snoyberg/conduit/pull/497)
Expand Down
2 changes: 1 addition & 1 deletion conduit/conduit.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: conduit
Version: 1.3.4.3
Version: 1.3.5
Synopsis: Streaming data processing library.
description:
`conduit` is a solution to the streaming data problem, allowing for production,
Expand Down
2 changes: 2 additions & 0 deletions conduit/src/Data/Conduit/List.hs
Original file line number Diff line number Diff line change
Expand Up @@ -776,6 +776,8 @@ STREAMING(groupOn1, groupOn1C, groupOn1S, f)

#if MIN_VERSION_base(4,9,0)
-- | Like 'groupOn1', but returning a 'NonEmpty' structure.
--
-- @since 1.3.5
groupOn :: (Monad m, Eq b)
=> (a -> b)
-> ConduitT a (NonEmpty a) m ()
Expand Down

0 comments on commit e5a49f6

Please sign in to comment.