Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-commutative-semigroups for
openSUSE:Factory checked in at 2024-12-20 23:10:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-commutative-semigroups (Old)
and /work/SRC/openSUSE:Factory/.ghc-commutative-semigroups.new.1881 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-commutative-semigroups"
Fri Dec 20 23:10:26 2024 rev:5 rq:1231430 version:0.2.0.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-commutative-semigroups/ghc-commutative-semigroups.changes
2024-04-21 20:30:45.093564042 +0200
+++
/work/SRC/openSUSE:Factory/.ghc-commutative-semigroups.new.1881/ghc-commutative-semigroups.changes
2024-12-20 23:10:44.716781841 +0100
@@ -1,0 +2,12 @@
+Sat May 18 12:28:54 UTC 2024 - Peter Simons <[email protected]>
+
+- Update commutative-semigroups to version 0.2.0.1.
+ ## 0.2.0.1 -- 2024-05-18
+
+ - Loosen dependency bounds for GHC 9.10, thanks to yaitskov
+
+ ## 0.2 -- 2024-04-09
+
+ - Removed the instances for the `Event` and `Lifetime` types unavailable on
Windows
+
+-------------------------------------------------------------------
Old:
----
commutative-semigroups-0.1.1.0.tar.gz
New:
----
commutative-semigroups-0.2.0.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-commutative-semigroups.spec ++++++
--- /var/tmp/diff_new_pack.hhcIcv/_old 2024-12-20 23:10:45.680821546 +0100
+++ /var/tmp/diff_new_pack.hhcIcv/_new 2024-12-20 23:10:45.684821711 +0100
@@ -19,7 +19,7 @@
%global pkg_name commutative-semigroups
%global pkgver %{pkg_name}-%{version}
Name: ghc-%{pkg_name}
-Version: 0.1.1.0
+Version: 0.2.0.1
Release: 0
Summary: Commutative semigroups
License: BSD-3-Clause
++++++ commutative-semigroups-0.1.1.0.tar.gz ->
commutative-semigroups-0.2.0.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/commutative-semigroups-0.1.1.0/ChangeLog.md
new/commutative-semigroups-0.2.0.1/ChangeLog.md
--- old/commutative-semigroups-0.1.1.0/ChangeLog.md 2001-09-09
03:46:40.000000000 +0200
+++ new/commutative-semigroups-0.2.0.1/ChangeLog.md 2001-09-09
03:46:40.000000000 +0200
@@ -1,5 +1,13 @@
# Revision history for commutative-semigroups
+## 0.2.0.1 -- 2024-05-18
+
+- Loosen dependency bounds for GHC 9.10, thanks to yaitskov
+
+## 0.2 -- 2024-04-09
+
+- Removed the instances for the `Event` and `Lifetime` types unavailable on
Windows
+
## 0.1.1.0 -- 2024-03-24
- Added more trivial instances for semigroups from base
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/commutative-semigroups-0.1.1.0/commutative-semigroups.cabal
new/commutative-semigroups-0.2.0.1/commutative-semigroups.cabal
--- old/commutative-semigroups-0.1.1.0/commutative-semigroups.cabal
2001-09-09 03:46:40.000000000 +0200
+++ new/commutative-semigroups-0.2.0.1/commutative-semigroups.cabal
2001-09-09 03:46:40.000000000 +0200
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: commutative-semigroups
-version: 0.1.1.0
+version: 0.2.0.1
synopsis: Commutative semigroups
description:
A commutative semigroup is a semigroup where the order of arguments to
mappend does not matter.
@@ -24,7 +24,7 @@
exposed-modules: Data.Semigroup.Commutative
Numeric.Product.Commutative
-- other-modules:
- build-depends: base >= 4.6 && < 4.20,
+ build-depends: base >= 4.6 && < 5,
containers >= 0.4 && < 0.8
hs-source-dirs: src
default-language: Haskell2010
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/commutative-semigroups-0.1.1.0/src/Data/Semigroup/Commutative.hs
new/commutative-semigroups-0.2.0.1/src/Data/Semigroup/Commutative.hs
--- old/commutative-semigroups-0.1.1.0/src/Data/Semigroup/Commutative.hs
2001-09-09 03:46:40.000000000 +0200
+++ new/commutative-semigroups-0.2.0.1/src/Data/Semigroup/Commutative.hs
2001-09-09 03:46:40.000000000 +0200
@@ -24,9 +24,6 @@
import Data.Functor.Identity
import Data.Semigroup (Max, Min, WrappedMonoid)
#endif
-#if MIN_VERSION_base(4,10,0)
-import GHC.Event (Event, Lifetime)
-#endif
#if MIN_VERSION_base(4,12,0)
import Data.Functor.Contravariant (Op(Op))
import GHC.Generics
@@ -60,11 +57,6 @@
instance (Commutative a, Monoid a) => Commutative (WrappedMonoid a)
#endif
-#if MIN_VERSION_base(4,10,0)
-instance Commutative Event
-instance Commutative Lifetime
-#endif
-
-- | @since 0.0.1.0
instance Commutative a => Commutative (Maybe a)