Hello community, here is the log from the commit of package ghc-xml-conduit for openSUSE:Factory checked in at 2016-02-11 12:37:30 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-xml-conduit (Old) and /work/SRC/openSUSE:Factory/.ghc-xml-conduit.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-xml-conduit" Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-xml-conduit/ghc-xml-conduit.changes 2015-12-29 12:59:53.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-xml-conduit.new/ghc-xml-conduit.changes 2016-02-11 12:37:31.000000000 +0100 @@ -1,0 +2,6 @@ +Mon Feb 1 10:08:05 UTC 2016 - [email protected] + +- update to 1.3.3.1 +* Generalize signature of choose + +------------------------------------------------------------------- Old: ---- xml-conduit-1.3.3.tar.gz New: ---- xml-conduit-1.3.3.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-xml-conduit.spec ++++++ --- /var/tmp/diff_new_pack.e0FvXV/_old 2016-02-11 12:37:32.000000000 +0100 +++ /var/tmp/diff_new_pack.e0FvXV/_new 2016-02-11 12:37:32.000000000 +0100 @@ -21,7 +21,7 @@ %bcond_with tests Name: ghc-xml-conduit -Version: 1.3.3 +Version: 1.3.3.1 Release: 0 Summary: Pure-Haskell utilities for dealing with XML with the conduit package License: BSD-2-Clause ++++++ xml-conduit-1.3.3.tar.gz -> xml-conduit-1.3.3.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xml-conduit-1.3.3/ChangeLog.md new/xml-conduit-1.3.3.1/ChangeLog.md --- old/xml-conduit-1.3.3/ChangeLog.md 2015-12-21 12:33:46.000000000 +0100 +++ new/xml-conduit-1.3.3.1/ChangeLog.md 2016-01-31 18:24:35.000000000 +0100 @@ -1,3 +1,7 @@ +## 1.3.3.1 + +* Generalize signature of choose (Fixes [#72](https://github.com/snoyberg/xml/issues/72)) [#73](https://github.com/snoyberg/xml/pull/73) + ## 1.3.3 * New render setting to control when to use CDATA [#68](https://github.com/snoyberg/xml/pull/68) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xml-conduit-1.3.3/Text/XML/Stream/Parse.hs new/xml-conduit-1.3.3.1/Text/XML/Stream/Parse.hs --- old/xml-conduit-1.3.3/Text/XML/Stream/Parse.hs 2015-12-21 12:33:46.000000000 +0100 +++ new/xml-conduit-1.3.3.1/Text/XML/Stream/Parse.hs 2016-01-31 18:24:35.000000000 +0100 @@ -816,9 +816,9 @@ -- | Get the value of the first parser which returns 'Just'. If no parsers -- succeed (i.e., return 'Just'), this function returns 'Nothing'. choose :: Monad m - => [Consumer Event m (Maybe a)] -- ^ List of parsers that will be tried in order. - -> Consumer Event m (Maybe a) -- ^ Result of the first parser to succeed, or @Nothing@ - -- if no parser succeeded + => [ConduitM Event o m (Maybe a)] -- ^ List of parsers that will be tried in order. + -> ConduitM Event o m (Maybe a) -- ^ Result of the first parser to succeed, or @Nothing@ + -- if no parser succeeded choose [] = return Nothing choose (i:is) = i >>= maybe (choose is) (return . Just) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xml-conduit-1.3.3/xml-conduit.cabal new/xml-conduit-1.3.3.1/xml-conduit.cabal --- old/xml-conduit-1.3.3/xml-conduit.cabal 2015-12-21 12:33:46.000000000 +0100 +++ new/xml-conduit-1.3.3.1/xml-conduit.cabal 2016-01-31 18:24:35.000000000 +0100 @@ -1,5 +1,5 @@ name: xml-conduit -version: 1.3.3 +version: 1.3.3.1 license: MIT license-file: LICENSE author: Michael Snoyman <[email protected]>, Aristid Breitkreuz <[email protected]>
