Hello community, here is the log from the commit of package ghc-resourcet for openSUSE:Factory checked in at 2016-02-23 16:57:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-resourcet (Old) and /work/SRC/openSUSE:Factory/.ghc-resourcet.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-resourcet" Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-resourcet/ghc-resourcet.changes 2016-02-09 13:31:54.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-resourcet.new/ghc-resourcet.changes 2016-02-23 16:59:35.000000000 +0100 @@ -1,0 +2,6 @@ +Mon Feb 22 11:22:04 UTC 2016 - [email protected] + +- update to 1.1.7.2 +* Remove upper bound on transformers + +------------------------------------------------------------------- Old: ---- resourcet-1.1.7.1.tar.gz New: ---- resourcet-1.1.7.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-resourcet.spec ++++++ --- /var/tmp/diff_new_pack.autynG/_old 2016-02-23 16:59:36.000000000 +0100 +++ /var/tmp/diff_new_pack.autynG/_new 2016-02-23 16:59:36.000000000 +0100 @@ -19,7 +19,7 @@ %global pkg_name resourcet Name: ghc-resourcet -Version: 1.1.7.1 +Version: 1.1.7.2 Release: 0 Summary: Deterministic allocation and freeing of scarce resources License: BSD-3-Clause ++++++ resourcet-1.1.7.1.tar.gz -> resourcet-1.1.7.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/resourcet-1.1.7.1/ChangeLog.md new/resourcet-1.1.7.2/ChangeLog.md --- old/resourcet-1.1.7.1/ChangeLog.md 2016-01-26 12:21:18.000000000 +0100 +++ new/resourcet-1.1.7.2/ChangeLog.md 2016-02-14 12:05:24.000000000 +0100 @@ -1,3 +1,7 @@ +## 1.1.7.2 + +* Remove upper bound on transformers [#249](https://github.com/snoyberg/conduit/issues/249) + ## 1.1.7.1 * transformers-compat 0.5 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/resourcet-1.1.7.1/Control/Monad/Trans/Resource.hs new/resourcet-1.1.7.2/Control/Monad/Trans/Resource.hs --- old/resourcet-1.1.7.1/Control/Monad/Trans/Resource.hs 2016-01-26 12:21:18.000000000 +0100 +++ new/resourcet-1.1.7.2/Control/Monad/Trans/Resource.hs 2016-02-14 12:05:24.000000000 +0100 @@ -6,7 +6,6 @@ {-# LANGUAGE RankNTypes #-} {-# LANGUAGE CPP #-} {-# LANGUAGE DeriveDataTypeable #-} -{-# LANGUAGE ImpredicativeTypes #-} #if __GLASGOW_HASKELL__ >= 704 {-# LANGUAGE ConstraintKinds #-} #endif @@ -97,12 +96,12 @@ -- -- Since 0.3.0 release :: MonadIO m => ReleaseKey -> m () -release (ReleaseKey istate rk) = liftIO $ release' istate rk +release (ReleaseKey istate rk) = liftIO $ release' istate rk (maybe (return ()) id) -- | Unprotect resource from cleanup actions, this allowes you to send -- resource into another resourcet process and reregister it there. --- It returns an release action that should be run in order to clean +-- It returns an release action that should be run in order to clean -- resource or Nothing in case if resource is already freed. -- -- Since 0.4.5 @@ -129,7 +128,7 @@ -- -- Since 0.3.0 resourceMask :: MonadResource m => ((forall a. ResourceT IO a -> ResourceT IO a) -> ResourceT IO b) -> m b -resourceMask = liftResourceT . resourceMaskRIO +resourceMask r = liftResourceT (resourceMaskRIO r) allocateRIO :: IO a -> (a -> IO ()) -> ResourceT IO (ReleaseKey, a) allocateRIO acquire rel = ResourceT $ \istate -> liftIO $ E.mask $ \restore -> do diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/resourcet-1.1.7.1/resourcet.cabal new/resourcet-1.1.7.2/resourcet.cabal --- old/resourcet-1.1.7.1/resourcet.cabal 2016-01-26 12:21:18.000000000 +0100 +++ new/resourcet-1.1.7.2/resourcet.cabal 2016-02-14 12:05:24.000000000 +0100 @@ -1,5 +1,5 @@ Name: resourcet -Version: 1.1.7.1 +Version: 1.1.7.2 Synopsis: Deterministic allocation and freeing of scarce resources. description: Hackage documentation generation is not reliable. For up to date documentation, please see: <http://www.stackage.org/package/resourcet>. License: BSD3 @@ -22,7 +22,7 @@ , transformers-base >= 0.4.4 && < 0.5 , monad-control >= 0.3.1 && < 1.1 , containers - , transformers >= 0.2.2 && < 0.5 + , transformers >= 0.2.2 , transformers-compat >= 0.3 && < 0.6 , mtl >= 2.0 && < 2.3 , mmorph
