Hello community,

here is the log from the commit of package ghc-writer-cps-transformers for 
openSUSE:Factory checked in at 2017-06-04 01:56:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-writer-cps-transformers (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-writer-cps-transformers.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-writer-cps-transformers"

Sun Jun  4 01:56:06 2017 rev:2 rq:494203 version:0.1.1.3

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/ghc-writer-cps-transformers/ghc-writer-cps-transformers.changes
  2017-04-12 18:10:08.789454003 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-writer-cps-transformers.new/ghc-writer-cps-transformers.changes
     2017-06-04 01:56:06.187783112 +0200
@@ -1,0 +2,5 @@
+Wed May  3 08:24:04 UTC 2017 - [email protected]
+
+- Update to version 0.1.1.3 with cabal2obs.
+
+-------------------------------------------------------------------

Old:
----
  writer-cps-transformers-0.1.1.2.tar.gz

New:
----
  writer-cps-transformers-0.1.1.3.tar.gz

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

Other differences:
------------------
++++++ ghc-writer-cps-transformers.spec ++++++
--- /var/tmp/diff_new_pack.8wQtCg/_old  2017-06-04 01:56:06.703710223 +0200
+++ /var/tmp/diff_new_pack.8wQtCg/_new  2017-06-04 01:56:06.703710223 +0200
@@ -18,7 +18,7 @@
 
 %global pkg_name writer-cps-transformers
 Name:           ghc-%{pkg_name}
-Version:        0.1.1.2
+Version:        0.1.1.3
 Release:        0
 Summary:        WriteT and RWST monad transformers
 License:        BSD-3-Clause

++++++ writer-cps-transformers-0.1.1.2.tar.gz -> 
writer-cps-transformers-0.1.1.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/writer-cps-transformers-0.1.1.2/src/Control/Monad/Trans/RWS/CPS/Internal.hs 
new/writer-cps-transformers-0.1.1.3/src/Control/Monad/Trans/RWS/CPS/Internal.hs
--- 
old/writer-cps-transformers-0.1.1.2/src/Control/Monad/Trans/RWS/CPS/Internal.hs 
    2017-01-17 13:35:22.000000000 +0100
+++ 
new/writer-cps-transformers-0.1.1.3/src/Control/Monad/Trans/RWS/CPS/Internal.hs 
    2017-04-28 17:58:47.000000000 +0200
@@ -385,14 +385,14 @@
 -- continuation.
 liftCallCC :: CallCC m (a,s,w) (b,s,w) -> CallCC (RWST r w s m) a b
 liftCallCC callCC f = RWST $ \r s w ->
-  callCC $ \c -> unRWST (f (\a -> RWST $ \_ _ w' -> c (a, s, w'))) r s w
+  callCC $ \c -> unRWST (f (\a -> RWST $ \_ _ _ -> c (a, s, w))) r s w
 {-# INLINE liftCallCC #-}
 
 -- | In-situ lifting of a @callCC@ operation to the new monad.
 -- This version uses the current state on entering the continuation.
 liftCallCC' :: CallCC m (a,s,w) (b,s,w) -> CallCC (RWST r w s m) a b
 liftCallCC' callCC f = RWST $ \r s w ->
-  callCC $ \c -> unRWST (f (\a -> RWST $ \_ s' w' -> c (a, s', w'))) r s w
+  callCC $ \c -> unRWST (f (\a -> RWST $ \_ s' _ -> c (a, s', w))) r s w
 {-# INLINE liftCallCC' #-}
 
 -- | Lift a @catchE@ operation to the new monad.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/writer-cps-transformers-0.1.1.2/src/Control/Monad/Trans/Writer/CPS/Internal.hs
 
new/writer-cps-transformers-0.1.1.3/src/Control/Monad/Trans/Writer/CPS/Internal.hs
--- 
old/writer-cps-transformers-0.1.1.2/src/Control/Monad/Trans/Writer/CPS/Internal.hs
  2017-01-17 13:35:22.000000000 +0100
+++ 
new/writer-cps-transformers-0.1.1.3/src/Control/Monad/Trans/Writer/CPS/Internal.hs
  2017-04-28 17:58:47.000000000 +0200
@@ -50,7 +50,6 @@
   censor,
   -- * Lifting other operations
   liftCallCC,
-  liftCallCC',
   liftCatch,
 ) where
 
@@ -271,14 +270,6 @@
   callCC $ \c -> unWriterT (f (\a -> WriterT $ \_ -> c (a, w))) w
 {-# INLINE liftCallCC #-}
 
--- | In-situ lifting of a @callCC@ operation to the new monad.
--- This version uses the current state on entering the continuation.
--- It does not satisfy the uniformity property (see 
"Control.Monad.Signatures").
-liftCallCC' :: CallCC m (a, w) (b, w) -> CallCC (WriterT w m) a b
-liftCallCC' callCC f = WriterT $ \w ->
-  callCC $ \c -> unWriterT (f (\a -> WriterT $ \w' -> c (a, w'))) w
-{-# INLINE liftCallCC' #-}
-
 -- | Lift a @catchE@ operation to the new monad.
 liftCatch :: Catch e m (a, w) -> Catch e (WriterT w m) a
 liftCatch catchE m h = WriterT $ \w -> unWriterT m w `catchE` \e -> unWriterT 
(h e) w
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/writer-cps-transformers-0.1.1.2/src/Control/Monad/Trans/Writer/CPS.hs 
new/writer-cps-transformers-0.1.1.3/src/Control/Monad/Trans/Writer/CPS.hs
--- old/writer-cps-transformers-0.1.1.2/src/Control/Monad/Trans/Writer/CPS.hs   
2017-01-17 13:35:22.000000000 +0100
+++ new/writer-cps-transformers-0.1.1.3/src/Control/Monad/Trans/Writer/CPS.hs   
2017-04-28 17:58:47.000000000 +0200
@@ -50,7 +50,6 @@
   censor,
   -- * Lifting other operations
   liftCallCC,
-  liftCallCC',
   liftCatch,
 ) where
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/writer-cps-transformers-0.1.1.2/writer-cps-transformers.cabal 
new/writer-cps-transformers-0.1.1.3/writer-cps-transformers.cabal
--- old/writer-cps-transformers-0.1.1.2/writer-cps-transformers.cabal   
2017-01-17 13:35:22.000000000 +0100
+++ new/writer-cps-transformers-0.1.1.3/writer-cps-transformers.cabal   
2017-04-28 17:59:07.000000000 +0200
@@ -3,7 +3,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           writer-cps-transformers
-version:        0.1.1.2
+version:        0.1.1.3
 license:        BSD3
 license-file:   LICENSE
 tested-with:    GHC == 7.0.4, GHC == 7.2.2, GHC == 7.4.2, GHC == 7.6.3, GHC == 
7.8.4, GHC == 7.10.3, GHC == 8.0.1


Reply via email to