Hello community,

here is the log from the commit of package ghc-case-insensitive for 
openSUSE:Factory checked in at 2018-05-30 12:03:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-case-insensitive (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-case-insensitive.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-case-insensitive"

Wed May 30 12:03:49 2018 rev:15 rq:607763 version:1.2.0.11

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/ghc-case-insensitive/ghc-case-insensitive.changes    
    2017-09-15 21:25:36.806867854 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-case-insensitive.new/ghc-case-insensitive.changes
   2018-05-30 12:25:02.838833918 +0200
@@ -1,0 +2,7 @@
+Mon May 14 17:02:11 UTC 2018 - [email protected]
+
+- Update case-insensitive to version 1.2.0.11.
+  * Dropped upper version bounds of dependencies because it's to
+    much work to maintain.
+
+-------------------------------------------------------------------

Old:
----
  case-insensitive-1.2.0.10.tar.gz

New:
----
  case-insensitive-1.2.0.11.tar.gz

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

Other differences:
------------------
++++++ ghc-case-insensitive.spec ++++++
--- /var/tmp/diff_new_pack.upRMak/_old  2018-05-30 12:25:03.406815503 +0200
+++ /var/tmp/diff_new_pack.upRMak/_new  2018-05-30 12:25:03.410815373 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-case-insensitive
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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 case-insensitive
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        1.2.0.10
+Version:        1.2.0.11
 Release:        0
 Summary:        Case insensitive string comparison
 License:        BSD-3-Clause
@@ -74,7 +74,7 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%doc LICENSE
+%license LICENSE
 
 %files devel -f %{name}-devel.files
 %doc CHANGELOG README.markdown

++++++ case-insensitive-1.2.0.10.tar.gz -> case-insensitive-1.2.0.11.tar.gz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/case-insensitive-1.2.0.10/CHANGELOG 
new/case-insensitive-1.2.0.11/CHANGELOG
--- old/case-insensitive-1.2.0.10/CHANGELOG     2017-05-27 16:25:27.000000000 
+0200
+++ new/case-insensitive-1.2.0.11/CHANGELOG     2018-03-14 21:11:22.000000000 
+0100
@@ -1,3 +1,7 @@
+1.2.0.11
+
+*  Dropped upper version bounds of dependencies because it's to much work to 
maintain.
+
 1.2.0.10
 
 * Support criterion-1.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/case-insensitive-1.2.0.10/case-insensitive.cabal 
new/case-insensitive-1.2.0.11/case-insensitive.cabal
--- old/case-insensitive-1.2.0.10/case-insensitive.cabal        2017-05-27 
16:25:27.000000000 +0200
+++ new/case-insensitive-1.2.0.11/case-insensitive.cabal        2018-03-14 
21:11:22.000000000 +0100
@@ -1,5 +1,5 @@
 name:          case-insensitive
-version:       1.2.0.10
+version:       1.2.0.11
 cabal-version: >=1.8
 build-type:    Simple
 license:       BSD3
@@ -33,13 +33,13 @@
 
 Library
   ghc-options: -Wall
-  build-depends: base       >= 3   && < 4.11
-               , bytestring >= 0.9 && < 0.11
-               , text       >= 0.3 && < 1.3
-               , deepseq    >= 1.1 && < 1.5
-               , hashable   >= 1.0 && < 1.3
+  build-depends: base       >= 3 && < 5
+               , bytestring >= 0.9
+               , text       >= 0.3
+               , deepseq    >= 1.1
+               , hashable   >= 1.0
   if !impl(ghc >= 8.0)
-    build-depends: semigroups >= 0.18 && < 0.19
+    build-depends: semigroups >= 0.18
   exposed-modules: Data.CaseInsensitive, Data.CaseInsensitive.Unsafe
   other-modules: Data.CaseInsensitive.Internal
 
@@ -49,12 +49,12 @@
   hs-source-dirs: test
 
   build-depends: case-insensitive
-               , base                 >= 3     && < 4.11
-               , bytestring           >= 0.9   && < 0.11
-               , text                 >= 0.3   && < 1.3
-               , HUnit                >= 1.2.2 && < 1.6
-               , test-framework       >= 0.2.4 && < 0.9
-               , test-framework-hunit >= 0.2.4 && < 0.4
+               , base                 >= 3 && < 5
+               , bytestring           >= 0.9
+               , text                 >= 0.3
+               , HUnit                >= 1.2.2
+               , test-framework       >= 0.2.4
+               , test-framework-hunit >= 0.2.4
 
   ghc-options: -Wall
 
@@ -67,7 +67,7 @@
   ghc-options:    -Wall -O2
 
   build-depends: case-insensitive
-               , base                 >= 3     && < 4.11
-               , bytestring           >= 0.9   && < 0.11
-               , criterion            >= 0.6.1 && < 1.3
-               , deepseq              >= 1.1   && < 1.5
+               , base       >= 3 && < 5
+               , bytestring >= 0.9
+               , criterion  >= 0.6.1
+               , deepseq    >= 1.1


Reply via email to