Hello community,
here is the log from the commit of package ghc-constraints for openSUSE:Factory
checked in at 2019-08-29 17:20:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-constraints (Old)
and /work/SRC/openSUSE:Factory/.ghc-constraints.new.7948 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-constraints"
Thu Aug 29 17:20:38 2019 rev:4 rq:726808 version:0.11.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-constraints/ghc-constraints.changes
2019-05-17 23:42:43.057927501 +0200
+++
/work/SRC/openSUSE:Factory/.ghc-constraints.new.7948/ghc-constraints.changes
2019-08-29 17:20:40.315335927 +0200
@@ -1,0 +2,8 @@
+Wed Aug 28 02:02:27 UTC 2019 - [email protected]
+
+- Update constraints to version 0.11.1.
+ 0.11.1 [2019.08.27]
+ -------------------
+ * Make `Data.Constraint.Deferrable.UnsatisfiedConstraint` a newtype.
+
+-------------------------------------------------------------------
Old:
----
constraints-0.11.tar.gz
New:
----
constraints-0.11.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-constraints.spec ++++++
--- /var/tmp/diff_new_pack.HYnHv7/_old 2019-08-29 17:20:40.851335838 +0200
+++ /var/tmp/diff_new_pack.HYnHv7/_new 2019-08-29 17:20:40.855335838 +0200
@@ -19,7 +19,7 @@
%global pkg_name constraints
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.11
+Version: 0.11.1
Release: 0
Summary: Constraint manipulation
License: BSD-2-Clause
++++++ constraints-0.11.tar.gz -> constraints-0.11.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/constraints-0.11/CHANGELOG.markdown
new/constraints-0.11.1/CHANGELOG.markdown
--- old/constraints-0.11/CHANGELOG.markdown 2001-09-09 03:46:40.000000000
+0200
+++ new/constraints-0.11.1/CHANGELOG.markdown 2001-09-09 03:46:40.000000000
+0200
@@ -1,3 +1,7 @@
+0.11.1 [2019.08.27]
+-------------------
+* Make `Data.Constraint.Deferrable.UnsatisfiedConstraint` a newtype.
+
0.11 [2019.05.10]
-----------------
* Introduce a `HasDict` type class for types that witness evidence of
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/constraints-0.11/constraints.cabal
new/constraints-0.11.1/constraints.cabal
--- old/constraints-0.11/constraints.cabal 2001-09-09 03:46:40.000000000
+0200
+++ new/constraints-0.11.1/constraints.cabal 2001-09-09 03:46:40.000000000
+0200
@@ -1,6 +1,6 @@
name: constraints
category: Constraints
-version: 0.11
+version: 0.11.1
license: BSD2
cabal-version: >= 1.10
license-file: LICENSE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/constraints-0.11/src/Data/Constraint/Deferrable.hs
new/constraints-0.11.1/src/Data/Constraint/Deferrable.hs
--- old/constraints-0.11/src/Data/Constraint/Deferrable.hs 2001-09-09
03:46:40.000000000 +0200
+++ new/constraints-0.11.1/src/Data/Constraint/Deferrable.hs 2001-09-09
03:46:40.000000000 +0200
@@ -55,7 +55,7 @@
import Data.Type.Equality ((:~~:)(HRefl))
#endif
-data UnsatisfiedConstraint = UnsatisfiedConstraint String
+newtype UnsatisfiedConstraint = UnsatisfiedConstraint String
deriving (Typeable, Show)
instance Exception UnsatisfiedConstraint