Hello community,

here is the log from the commit of package ghc-base-prelude for 
openSUSE:Factory checked in at 2016-05-31 12:24:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-base-prelude (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-base-prelude.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-base-prelude"

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-base-prelude/ghc-base-prelude.changes        
2016-01-08 15:22:40.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-base-prelude.new/ghc-base-prelude.changes   
2016-05-31 12:24:11.000000000 +0200
@@ -1,0 +2,10 @@
+Mon May 23 08:41:45 UTC 2016 - mimi...@gmail.com
+
+- update to 1.0.1.1 
+
+-------------------------------------------------------------------
+Sun Feb 14 07:14:16 UTC 2016 - mimi...@gmail.com
+
+- update to 1
+
+-------------------------------------------------------------------

Old:
----
  base-prelude-0.1.21.tar.gz

New:
----
  base-prelude-1.0.1.1.tar.gz

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

Other differences:
------------------
++++++ ghc-base-prelude.spec ++++++
--- /var/tmp/diff_new_pack.WU403a/_old  2016-05-31 12:24:12.000000000 +0200
+++ /var/tmp/diff_new_pack.WU403a/_new  2016-05-31 12:24:12.000000000 +0200
@@ -19,7 +19,7 @@
 %global pkg_name base-prelude
 
 Name:           ghc-base-prelude
-Version:        0.1.21
+Version:        1.0.1.1
 Release:        0
 Summary:        The most complete prelude formed from only the "base" package
 License:        MIT

++++++ base-prelude-0.1.21.tar.gz -> base-prelude-1.0.1.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/base-prelude-0.1.21/CHANGELOG.md 
new/base-prelude-1.0.1.1/CHANGELOG.md
--- old/base-prelude-0.1.21/CHANGELOG.md        1970-01-01 01:00:00.000000000 
+0100
+++ new/base-prelude-1.0.1.1/CHANGELOG.md       2016-05-22 13:15:57.000000000 
+0200
@@ -0,0 +1,33 @@
+# 1.0.1
+
+* Relaxed the "base" dependency
+
+# 1
+
+No changes.
+
+# 0.2
+
+* Reexported `Data.Bifunctor`.
+
+* `first` and `second` are now (conditionally) exported from `Data.Bifunctor`, 
not `Control.Arrow`; note that if your version of base is lower than 4.8, 
`first` and `second` won't be available at all.
+
+# 0.1.21
+
+* Reexported `printf` and `hPrintf` from `Text.Printf`.
+
+# 0.1.20
+
+* Reexported `Numeric`.
+
+# 0.1.19
+
+* Avoided the clash between `(&)` and `sortOn` defined in the package and 
versions of these functions imported from base.
+
+# 0.1.18
+
+* Added implementations of `(&)` and `sortOn` (normally not available in older 
versions of base).
+
+# 0.1.17
+
+* Reexported `Control.Monad.Fix`.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/base-prelude-0.1.21/base-prelude.cabal 
new/base-prelude-1.0.1.1/base-prelude.cabal
--- old/base-prelude-0.1.21/base-prelude.cabal  2016-01-05 09:36:05.000000000 
+0100
+++ new/base-prelude-1.0.1.1/base-prelude.cabal 2016-05-22 13:15:57.000000000 
+0200
@@ -1,16 +1,23 @@
 name:
   base-prelude
 version:
-  0.1.21
+  1.0.1.1
 synopsis:
-  The most complete prelude formed from only the "base" package
+  The most complete prelude formed solely from the "base" package
 description:
-  A library which reexports all non-conflicting and
+  A library which aims to reexport all the non-conflicting and
   most general definitions from the \"base\" package.
   This includes APIs for applicatives, arrows, monoids, foldables, 
traversables,
   exceptions, generics, ST, MVars and STM.
   .
   This package will never have any dependencies other than \"base\".
+  .
+  /Versioning policy/
+  .
+  The versioning policy of this package deviates from PVP in the sense
+  that its exports in part are transitively determined by the version of 
\"base\".
+  Therefore it's recommended for the users of \"base-prelude\" to specify
+  the bounds of \"base\" as well.
 category:
   Prelude
 homepage:
@@ -29,6 +36,8 @@
   LICENSE
 build-type:
   Simple
+extra-source-files:
+  CHANGELOG.md
 cabal-version:
   >=1.10
 
@@ -47,6 +56,6 @@
   exposed-modules:
     BasePrelude
   build-depends:
-    base >= 4.6 && < 4.9
+    base >= 4.6 && < 5
   default-language:
     Haskell2010
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/base-prelude-0.1.21/library/BasePrelude.hs 
new/base-prelude-1.0.1.1/library/BasePrelude.hs
--- old/base-prelude-0.1.21/library/BasePrelude.hs      2016-01-05 
09:36:05.000000000 +0100
+++ new/base-prelude-1.0.1.1/library/BasePrelude.hs     2016-05-22 
13:15:57.000000000 +0200
@@ -1,3 +1,4 @@
+{-# LANGUAGE CPP #-}
 -- |
 -- This module reexports most of the definitions from the \"base\" package,
 -- which are meant to be imported unqualified.
@@ -28,13 +29,16 @@
 -------------------------
 
 import Control.Applicative as Exports
-import Control.Arrow as Exports
+import Control.Arrow as Exports hiding (first, second)
 import Control.Category as Exports
 import Control.Concurrent as Exports
 import Control.Exception as Exports
 import Control.Monad as Exports hiding (mapM_, sequence_, forM_, msum, mapM, 
sequence, forM)
 import Control.Monad.Fix as Exports hiding (fix)
 import Control.Monad.ST as Exports
+#if MIN_VERSION_base(4,8,0)
+import Data.Bifunctor as Exports
+#endif
 import Data.Bits as Exports
 import Data.Bool as Exports hiding (bool)
 import Data.Char as Exports


Reply via email to