Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-managed for openSUSE:Factory 
checked in at 2022-02-11 23:09:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-managed (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-managed.new.1956 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-managed"

Fri Feb 11 23:09:18 2022 rev:10 rq:953497 version:1.0.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-managed/ghc-managed.changes  2021-12-19 
17:35:03.500291219 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-managed.new.1956/ghc-managed.changes        
2022-02-11 23:11:14.055262631 +0100
@@ -1,0 +2,6 @@
+Wed Dec  1 05:16:16 UTC 2021 - Peter Simons <psim...@suse.com>
+
+- Update managed to version 1.0.9 revision 1.
+  Upstream does not provide a change log file.
+
+-------------------------------------------------------------------

Old:
----
  managed-1.0.8.tar.gz

New:
----
  managed-1.0.9.tar.gz

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

Other differences:
------------------
++++++ ghc-managed.spec ++++++
--- /var/tmp/diff_new_pack.yWv5ZG/_old  2022-02-11 23:11:14.591264181 +0100
+++ /var/tmp/diff_new_pack.yWv5ZG/_new  2022-02-11 23:11:14.603264216 +0100
@@ -18,7 +18,7 @@
 
 %global pkg_name managed
 Name:           ghc-%{pkg_name}
-Version:        1.0.8
+Version:        1.0.9
 Release:        0
 Summary:        A monad for managed values
 License:        BSD-3-Clause

++++++ managed-1.0.8.tar.gz -> managed-1.0.9.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/managed-1.0.8/managed.cabal 
new/managed-1.0.9/managed.cabal
--- old/managed-1.0.8/managed.cabal     2020-09-03 17:55:19.000000000 +0200
+++ new/managed-1.0.9/managed.cabal     2001-09-09 03:46:40.000000000 +0200
@@ -1,5 +1,5 @@
 Name: managed
-Version: 1.0.8
+Version: 1.0.9
 Cabal-Version: >=1.10
 Build-Type: Simple
 License: BSD3
@@ -7,7 +7,16 @@
 Copyright: 2014 Gabriel Gonzalez
 Author: Gabriel Gonzalez
 Maintainer: gabriel...@gmail.com
-Tested-With: GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.2, GHC == 8.0.1
+Tested-With:
+    GHC == 9.2.1
+    GHC == 9.0.1
+    GHC == 8.10.7
+    GHC == 8.8.4
+    GHC == 8.6.5
+    GHC == 8.4.4
+    GHC == 8.2.2
+    GHC == 8.0.2
+    GHC == 7.10.3
 Bug-Reports: https://github.com/Gabriel439/Haskell-Managed-Library/issues
 Synopsis: A monad for managed values
 Description: In Haskell you very often acquire values using the @with...@
@@ -34,10 +43,10 @@
     Hs-Source-Dirs: src
     Build-Depends:
         base              >= 4.5     && < 5  ,
-        transformers      >= 0.2.0.0 && < 0.6
+        transformers      >= 0.2.0.0 && < 0.7
     if !impl(ghc >= 8.0)
       Build-Depends:
-        semigroups        >= 0.16    && < 0.19
+        semigroups        >= 0.16    && < 0.21
     Exposed-Modules:
         Control.Monad.Managed,
         Control.Monad.Managed.Safe
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/managed-1.0.8/src/Control/Monad/Managed.hs 
new/managed-1.0.9/src/Control/Monad/Managed.hs
--- old/managed-1.0.8/src/Control/Monad/Managed.hs      2020-09-03 
17:55:19.000000000 +0200
+++ new/managed-1.0.9/src/Control/Monad/Managed.hs      2001-09-09 
03:46:40.000000000 +0200
@@ -156,9 +156,6 @@
         return_ (f x) )
 
 instance Monad Managed where
-    return r = Managed (\return_ ->
-        return_ r )
-
     ma >>= f = Managed (\return_ ->
         ma  >>- \a ->
         f a >>- \b ->

++++++ managed.cabal ++++++
--- /var/tmp/diff_new_pack.yWv5ZG/_old  2022-02-11 23:11:14.703264506 +0100
+++ /var/tmp/diff_new_pack.yWv5ZG/_new  2022-02-11 23:11:14.707264517 +0100
@@ -1,5 +1,5 @@
 Name: managed
-Version: 1.0.8
+Version: 1.0.9
 x-revision: 1
 Cabal-Version: >=1.10
 Build-Type: Simple
@@ -8,7 +8,16 @@
 Copyright: 2014 Gabriel Gonzalez
 Author: Gabriel Gonzalez
 Maintainer: gabriel...@gmail.com
-Tested-With: GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.2, GHC == 8.0.1
+Tested-With:
+    GHC == 9.2.1
+    GHC == 9.0.1
+    GHC == 8.10.7
+    GHC == 8.8.4
+    GHC == 8.6.5
+    GHC == 8.4.4
+    GHC == 8.2.2
+    GHC == 8.0.2
+    GHC == 7.10.3
 Bug-Reports: https://github.com/Gabriel439/Haskell-Managed-Library/issues
 Synopsis: A monad for managed values
 Description: In Haskell you very often acquire values using the @with...@
@@ -34,7 +43,7 @@
 Library
     Hs-Source-Dirs: src
     Build-Depends:
-        base              >= 4.5     && < 5  ,
+        base              >= 4.8     && < 5  ,
         transformers      >= 0.2.0.0 && < 0.7
     if !impl(ghc >= 8.0)
       Build-Depends:

Reply via email to