Hello community,

here is the log from the commit of package ghc-StateVar for openSUSE:Factory 
checked in at 2016-01-20 09:54:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-StateVar (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-StateVar.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-StateVar"

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-StateVar/ghc-StateVar.changes        
2016-01-05 21:54:57.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-StateVar.new/ghc-StateVar.changes   
2016-01-20 09:54:59.000000000 +0100
@@ -1,0 +2,6 @@
+Mon Jan 18 11:53:15 UTC 2016 - [email protected]
+
+- update to 1.1.0.3
+* Removed a couple of redundant typeclass constraints.
+
+-------------------------------------------------------------------

Old:
----
  StateVar-1.1.0.2.tar.gz

New:
----
  StateVar-1.1.0.3.tar.gz

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

Other differences:
------------------
++++++ ghc-StateVar.spec ++++++
--- /var/tmp/diff_new_pack.lPDLy6/_old  2016-01-20 09:55:00.000000000 +0100
+++ /var/tmp/diff_new_pack.lPDLy6/_new  2016-01-20 09:55:00.000000000 +0100
@@ -18,7 +18,7 @@
 %global pkg_name StateVar
 
 Name:           ghc-StateVar
-Version:        1.1.0.2
+Version:        1.1.0.3
 Release:        0
 Summary:        State variables
 Group:          System/Libraries

++++++ StateVar-1.1.0.2.tar.gz -> StateVar-1.1.0.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/StateVar-1.1.0.2/CHANGELOG.md 
new/StateVar-1.1.0.3/CHANGELOG.md
--- old/StateVar-1.1.0.2/CHANGELOG.md   2015-12-22 09:40:28.000000000 +0100
+++ new/StateVar-1.1.0.3/CHANGELOG.md   2016-01-17 01:35:24.000000000 +0100
@@ -1,3 +1,7 @@
+1.1.0.3
+-------
+* Removed a couple of redundant typeclass constraints.
+
 1.1.0.2
 -------
 * Relaxed upper version bound for `transformers`.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/StateVar-1.1.0.2/StateVar.cabal 
new/StateVar-1.1.0.3/StateVar.cabal
--- old/StateVar-1.1.0.2/StateVar.cabal 2015-12-22 09:40:28.000000000 +0100
+++ new/StateVar-1.1.0.3/StateVar.cabal 2016-01-17 01:35:24.000000000 +0100
@@ -1,5 +1,5 @@
 name: StateVar
-version: 1.1.0.2
+version: 1.1.0.3
 synopsis: State variables
 description:
   This package contains state variables, which are references in the IO monad,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/StateVar-1.1.0.2/src/Data/StateVar.hs 
new/StateVar-1.1.0.3/src/Data/StateVar.hs
--- old/StateVar-1.1.0.2/src/Data/StateVar.hs   2015-12-22 09:40:28.000000000 
+0100
+++ new/StateVar-1.1.0.3/src/Data/StateVar.hs   2016-01-17 01:35:24.000000000 
+0100
@@ -197,13 +197,13 @@
   -- | Transform the contents of a state variable with a given funtion.
   ($~) :: MonadIO m => t -> (a -> b) -> m ()
 #if USE_DEFAULT_SIGNATURES
-  default ($~) :: (MonadIO m, a ~ b, HasGetter t a, HasSetter t a) => t -> (a 
-> b) -> m ()
+  default ($~) :: (MonadIO m, a ~ b, HasGetter t a) => t -> (a -> b) -> m ()
   ($~) = defaultUpdate
 #endif
   -- | This is a variant of '$~' which is strict in the transformed value.
   ($~!) :: MonadIO m => t -> (a -> b) -> m ()
 #if USE_DEFAULT_SIGNATURES
-  default ($~!) :: (MonadIO m, a ~ b, HasGetter t a, HasSetter t a) => t -> (a 
-> b) -> m ()
+  default ($~!) :: (MonadIO m, a ~ b, HasGetter t a) => t -> (a -> b) -> m ()
   ($~!) = defaultUpdateStrict
 #endif
 


Reply via email to