Hello community,
here is the log from the commit of package ghc-distributive for
openSUSE:Factory checked in at 2020-05-11 13:34:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-distributive (Old)
and /work/SRC/openSUSE:Factory/.ghc-distributive.new.2738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-distributive"
Mon May 11 13:34:33 2020 rev:10 rq:801010 version:0.6.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-distributive/ghc-distributive.changes
2019-12-27 13:53:06.400647507 +0100
+++
/work/SRC/openSUSE:Factory/.ghc-distributive.new.2738/ghc-distributive.changes
2020-05-11 13:35:22.428365447 +0200
@@ -1,0 +2,8 @@
+Wed May 6 06:54:11 UTC 2020 - [email protected]
+
+- Update distributive to version 0.6.2.
+ 0.6.2 [2020.04.10]
+ ------------------
+ * Make the `Distributive` instance for `Tagged` poly-kinded.
+
+-------------------------------------------------------------------
Old:
----
distributive-0.6.1.tar.gz
New:
----
distributive-0.6.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-distributive.spec ++++++
--- /var/tmp/diff_new_pack.KjjauF/_old 2020-05-11 13:35:22.984366612 +0200
+++ /var/tmp/diff_new_pack.KjjauF/_new 2020-05-11 13:35:22.984366612 +0200
@@ -1,7 +1,7 @@
#
# spec file for package ghc-distributive
#
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
%global pkg_name distributive
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.6.1
+Version: 0.6.2
Release: 0
Summary: Distributive functors -- Dual to Traversable
License: BSD-2-Clause
++++++ distributive-0.6.1.tar.gz -> distributive-0.6.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/distributive-0.6.1/CHANGELOG.markdown
new/distributive-0.6.2/CHANGELOG.markdown
--- old/distributive-0.6.1/CHANGELOG.markdown 2001-09-09 03:46:40.000000000
+0200
+++ new/distributive-0.6.2/CHANGELOG.markdown 2001-09-09 03:46:40.000000000
+0200
@@ -1,3 +1,7 @@
+0.6.2 [2020.04.10]
+------------------
+* Make the `Distributive` instance for `Tagged` poly-kinded.
+
0.6.1 [2019.09.06]
------------------
* Add a `Distributive` instance for `WrappedMonad m`.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/distributive-0.6.1/distributive.cabal
new/distributive-0.6.2/distributive.cabal
--- old/distributive-0.6.1/distributive.cabal 2001-09-09 03:46:40.000000000
+0200
+++ new/distributive-0.6.2/distributive.cabal 2001-09-09 03:46:40.000000000
+0200
@@ -1,6 +1,6 @@
name: distributive
category: Data Structures
-version: 0.6.1
+version: 0.6.2
license: BSD3
cabal-version: >= 1.8
license-file: LICENSE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/distributive-0.6.1/src/Data/Distributive.hs
new/distributive-0.6.2/src/Data/Distributive.hs
--- old/distributive-0.6.1/src/Data/Distributive.hs 2001-09-09
03:46:40.000000000 +0200
+++ new/distributive-0.6.2/src/Data/Distributive.hs 2001-09-09
03:46:40.000000000 +0200
@@ -6,6 +6,10 @@
{-# LANGUAGE Trustworthy #-}
#endif
+#if __GLASGOW_HASKELL__ >= 706
+{-# LANGUAGE PolyKinds #-}
+#endif
+
-----------------------------------------------------------------------------
-- |
-- Module : Data.Distributive
@@ -66,7 +70,7 @@
-- some Coapplicative class. Categorically every 'Distributive'
-- functor is actually a right adjoint, and so it must be 'Representable'
-- endofunctor and preserve all limits. This is a fancy way of saying it
--- isomorphic to @(->) x@ for some x.
+-- is isomorphic to @(->) x@ for some x.
--
-- To be distributable a container will need to have a way to consistently
-- zip a potentially infinite number of copies of itself. This effectively