Hello community,

here is the log from the commit of package ghc-contravariant for 
openSUSE:Factory checked in at 2019-06-12 13:18:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-contravariant (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-contravariant.new.4811 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-contravariant"

Wed Jun 12 13:18:31 2019 rev:11 rq:709198 version:1.5.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-contravariant/ghc-contravariant.changes      
2019-05-12 11:34:57.526143938 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-contravariant.new.4811/ghc-contravariant.changes
    2019-06-12 13:18:34.388571551 +0200
@@ -1,0 +2,9 @@
+Tue Jun  4 02:02:26 UTC 2019 - [email protected]
+
+- Update contravariant to version 1.5.2.
+  1.5.2 [2019.06.03]
+  ------------------
+  * Mark `Data.Functor.Contravariant` and `Data.Functor.Contravariant.Generic`
+    as unconditionally `Trustworthy`.
+
+-------------------------------------------------------------------

Old:
----
  contravariant-1.5.1.tar.gz

New:
----
  contravariant-1.5.2.tar.gz

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

Other differences:
------------------
++++++ ghc-contravariant.spec ++++++
--- /var/tmp/diff_new_pack.oByinv/_old  2019-06-12 13:18:34.840571345 +0200
+++ /var/tmp/diff_new_pack.oByinv/_new  2019-06-12 13:18:34.844571343 +0200
@@ -18,7 +18,7 @@
 
 %global pkg_name contravariant
 Name:           ghc-%{pkg_name}
-Version:        1.5.1
+Version:        1.5.2
 Release:        0
 Summary:        Contravariant functors
 License:        BSD-3-Clause

++++++ contravariant-1.5.1.tar.gz -> contravariant-1.5.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/contravariant-1.5.1/CHANGELOG.markdown 
new/contravariant-1.5.2/CHANGELOG.markdown
--- old/contravariant-1.5.1/CHANGELOG.markdown  2001-09-09 03:46:40.000000000 
+0200
+++ new/contravariant-1.5.2/CHANGELOG.markdown  2001-09-09 03:46:40.000000000 
+0200
@@ -1,3 +1,8 @@
+1.5.2 [2019.06.03]
+------------------
+* Mark `Data.Functor.Contravariant` and `Data.Functor.Contravariant.Generic`
+  as unconditionally `Trustworthy`.
+
 1.5.1 [2019.05.02]
 ------------------
 * Remove the use of `unsafeCoerce` in `Data.Functor.Contravariant.Generic`. As
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/contravariant-1.5.1/contravariant.cabal 
new/contravariant-1.5.2/contravariant.cabal
--- old/contravariant-1.5.1/contravariant.cabal 2001-09-09 03:46:40.000000000 
+0200
+++ new/contravariant-1.5.2/contravariant.cabal 2001-09-09 03:46:40.000000000 
+0200
@@ -1,6 +1,6 @@
 name:          contravariant
 category:      Control, Data
-version:       1.5.1
+version:       1.5.2
 license:       BSD3
 cabal-version: >= 1.6
 license-file:  LICENSE
@@ -77,7 +77,7 @@
     build-depends: semigroups >= 0.15.2 && < 1
 
   if flag(StateVar)
-    build-depends: StateVar >= 1.1.1 && < 1.2
+    build-depends: StateVar >= 1.1.1 && < 1.3
 
   if impl(ghc >= 7.2 && < 7.6)
     build-depends: ghc-prim
@@ -93,4 +93,7 @@
   if impl(ghc >= 7.4)
     exposed-modules: Data.Functor.Contravariant.Generic
 
+  if impl(ghc >= 7.10)
+    ghc-options: -fno-warn-trustworthy-safe
+
   ghc-options: -Wall
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/contravariant-1.5.1/old-src/Data/Functor/Contravariant.hs 
new/contravariant-1.5.2/old-src/Data/Functor/Contravariant.hs
--- old/contravariant-1.5.1/old-src/Data/Functor/Contravariant.hs       
2001-09-09 03:46:40.000000000 +0200
+++ new/contravariant-1.5.2/old-src/Data/Functor/Contravariant.hs       
2001-09-09 03:46:40.000000000 +0200
@@ -14,13 +14,9 @@
 #define MIN_VERSION_base(x,y,z) 1
 #endif
 
-#if __GLASGOW_HASKELL__ >= 704
-#if MIN_VERSION_transformers(0,3,0) && MIN_VERSION_tagged(0,6,1)
-{-# LANGUAGE Safe #-}
-#else
+#if __GLASGOW_HASKELL__ >= 702
 {-# LANGUAGE Trustworthy #-}
 #endif
-#endif
 
 {-# OPTIONS_GHC -fno-warn-deprecations #-}
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/contravariant-1.5.1/src/Data/Functor/Contravariant/Generic.hs 
new/contravariant-1.5.2/src/Data/Functor/Contravariant/Generic.hs
--- old/contravariant-1.5.1/src/Data/Functor/Contravariant/Generic.hs   
2001-09-09 03:46:40.000000000 +0200
+++ new/contravariant-1.5.2/src/Data/Functor/Contravariant/Generic.hs   
2001-09-09 03:46:40.000000000 +0200
@@ -1,6 +1,6 @@
 {-# LANGUAGE CPP #-}
-#if __GLASGOW_HASKELL__ >= 704
-{-# LANGUAGE Safe #-}
+#if __GLASGOW_HASKELL__ >= 702
+{-# LANGUAGE Trustworthy #-}
 #endif
 {-# LANGUAGE MultiParamTypeClasses #-}
 {-# LANGUAGE ConstraintKinds #-}


Reply via email to