Hello community,

here is the log from the commit of package ghc-resourcet for openSUSE:Factory 
checked in at 2015-05-21 08:12:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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      
2015-02-27 10:59:11.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-resourcet.new/ghc-resourcet.changes 
2015-05-21 08:12:06.000000000 +0200
@@ -1,0 +2,6 @@
+Tue Apr 21 19:53:42 UTC 2015 - [email protected]
+
+- update to 1.1.4.1
+* Add `MonadResource ExceptT` instance
+
+-------------------------------------------------------------------

Old:
----
  _service
  resourcet-1.1.3.3.tar.gz

New:
----
  resourcet-1.1.4.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ghc-resourcet.spec ++++++
--- /var/tmp/diff_new_pack.FUc1Do/_old  2015-05-21 08:12:07.000000000 +0200
+++ /var/tmp/diff_new_pack.FUc1Do/_new  2015-05-21 08:12:07.000000000 +0200
@@ -19,7 +19,7 @@
 %global pkg_name resourcet
 
 Name:           ghc-resourcet
-Version:        1.1.3.3
+Version:        1.1.4.1
 Release:        0
 Summary:        Deterministic allocation and freeing of scarce resources
 License:        BSD-3-Clause
@@ -39,6 +39,7 @@
 BuildRequires:  ghc-monad-control-devel
 BuildRequires:  ghc-mtl-devel
 BuildRequires:  ghc-transformers-base-devel
+BuildRequires:  ghc-transformers-compat-devel
 BuildRequires:  ghc-transformers-devel
 # End cabal-rpm deps
 

++++++ resourcet-1.1.3.3.tar.gz -> resourcet-1.1.4.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/resourcet-1.1.3.3/ChangeLog.md 
new/resourcet-1.1.4.1/ChangeLog.md
--- old/resourcet-1.1.3.3/ChangeLog.md  2014-12-17 11:48:49.000000000 +0100
+++ new/resourcet-1.1.4.1/ChangeLog.md  2015-02-17 06:44:51.000000000 +0100
@@ -1,3 +1,11 @@
+## 1.1.4.1
+
+* Allow older `exceptions` version again
+
+## 1.1.4
+
+* Add `MonadResource ExceptT` instance 
[#198](https://github.com/snoyberg/conduit/pull/198)
+
 ## 1.1.3.2
 
 monad-control-1.0 support [#191](https://github.com/snoyberg/conduit/pull/191)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/resourcet-1.1.3.3/Control/Monad/Trans/Resource/Internal.hs 
new/resourcet-1.1.4.1/Control/Monad/Trans/Resource/Internal.hs
--- old/resourcet-1.1.3.3/Control/Monad/Trans/Resource/Internal.hs      
2014-12-17 11:48:49.000000000 +0100
+++ new/resourcet-1.1.4.1/Control/Monad/Trans/Resource/Internal.hs      
2015-02-17 06:44:51.000000000 +0100
@@ -39,6 +39,7 @@
 import Control.Monad.Trans.List     ( ListT    )
 import Control.Monad.Trans.Maybe    ( MaybeT   )
 import Control.Monad.Trans.Error    ( ErrorT, Error)
+import Control.Monad.Trans.Except   ( ExceptT  )
 import Control.Monad.Trans.Reader   ( ReaderT  )
 import Control.Monad.Trans.State    ( StateT   )
 import Control.Monad.Trans.Writer   ( WriterT  )
@@ -284,6 +285,9 @@
 GO(ListT)
 GO(MaybeT)
 GOX(Error e, ErrorT e)
+#if MIN_VERSION_exceptions(0, 8, 0)
+GO(ExceptT e)
+#endif
 GO(ReaderT r)
 GO(ContT r)
 GO(StateT s)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/resourcet-1.1.3.3/resourcet.cabal 
new/resourcet-1.1.4.1/resourcet.cabal
--- old/resourcet-1.1.3.3/resourcet.cabal       2014-12-17 11:48:49.000000000 
+0100
+++ new/resourcet-1.1.4.1/resourcet.cabal       2015-02-17 06:44:51.000000000 
+0100
@@ -1,5 +1,5 @@
 Name:                resourcet
-Version:             1.1.3.3
+Version:             1.1.4.1
 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
@@ -19,10 +19,11 @@
                        Data.Acquire.Internal
   Build-depends:       base                     >= 4.3          && < 5
                      , lifted-base              >= 0.1
-                     , transformers-base        >= 0.4.1        && < 0.5
+                     , transformers-base        >= 0.4.4        && < 0.5
                      , monad-control            >= 0.3.1        && < 1.1
                      , containers
                      , transformers             >= 0.2.2        && < 0.5
+                     , transformers-compat      >= 0.3          && < 0.5
                      , mtl                      >= 2.0          && < 2.3
                      , mmorph
                      , exceptions               >= 0.5


Reply via email to