Hello community,
here is the log from the commit of package ghc-fast-logger for
openSUSE:Leap:15.2 checked in at 2020-03-13 10:56:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/ghc-fast-logger (Old)
and /work/SRC/openSUSE:Leap:15.2/.ghc-fast-logger.new.3160 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-fast-logger"
Fri Mar 13 10:56:51 2020 rev:12 rq:782964 version:3.0.1
Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/ghc-fast-logger/ghc-fast-logger.changes
2020-02-19 18:38:59.226015406 +0100
+++
/work/SRC/openSUSE:Leap:15.2/.ghc-fast-logger.new.3160/ghc-fast-logger.changes
2020-03-13 10:56:53.908414286 +0100
@@ -1,0 +2,9 @@
+Thu Feb 27 14:16:55 UTC 2020 - [email protected]
+
+- Update fast-logger to version 3.0.1.
+ ## 3.0.1
+
+ * Creating the `Internal` module.
+ [#185](https://github.com/kazu-yamamoto/logger/pull/185)
+
+-------------------------------------------------------------------
Old:
----
fast-logger-3.0.0.tar.gz
New:
----
fast-logger-3.0.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-fast-logger.spec ++++++
--- /var/tmp/diff_new_pack.wTUs0w/_old 2020-03-13 10:56:54.256414534 +0100
+++ /var/tmp/diff_new_pack.wTUs0w/_new 2020-03-13 10:56:54.260414537 +0100
@@ -1,7 +1,7 @@
#
# spec file for package ghc-fast-logger
#
-# 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 fast-logger
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 3.0.0
+Version: 3.0.1
Release: 0
Summary: A fast logging system
License: BSD-3-Clause
++++++ fast-logger-3.0.0.tar.gz -> fast-logger-3.0.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/fast-logger-3.0.0/ChangeLog.md
new/fast-logger-3.0.1/ChangeLog.md
--- old/fast-logger-3.0.0/ChangeLog.md 2019-10-04 03:05:51.000000000 +0200
+++ new/fast-logger-3.0.1/ChangeLog.md 2020-02-13 02:17:26.000000000 +0100
@@ -1,3 +1,8 @@
+## 3.0.1
+
+* Creating the `Internal` module.
+ [#185](https://github.com/kazu-yamamoto/logger/pull/185)
+
## 3.0.0
* Allowing the callback logger to be generic.
[#182](https://github.com/kazu-yamamoto/logger/pull/180) This is a BREAKING
CHANGE. Users should do:
@@ -15,7 +20,7 @@
## 2.4.15
* Rescuing GHC 7.8.
-
+
## 2.4.14
* Add `ToLogStr` instances for the following types: signed integers, unsigned
integers, floating-point numbers. These instances all use decimal encodings.
[#177](https://github.com/kazu-yamamoto/logger/pull/177)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/fast-logger-3.0.0/System/Log/FastLogger/IO.hs
new/fast-logger-3.0.1/System/Log/FastLogger/IO.hs
--- old/fast-logger-3.0.0/System/Log/FastLogger/IO.hs 2019-10-04
03:05:51.000000000 +0200
+++ new/fast-logger-3.0.1/System/Log/FastLogger/IO.hs 2020-02-13
02:17:26.000000000 +0100
@@ -1,5 +1,11 @@
{-# LANGUAGE BangPatterns #-}
+{-# LANGUAGE CPP #-}
+
+#if __GLASGOW_HASKELL__ <= 708
{-# LANGUAGE Trustworthy #-}
+#else
+{-# LANGUAGE Safe #-}
+#endif
module System.Log.FastLogger.IO where
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/fast-logger-3.0.0/System/Log/FastLogger/Internal.hs
new/fast-logger-3.0.1/System/Log/FastLogger/Internal.hs
--- old/fast-logger-3.0.0/System/Log/FastLogger/Internal.hs 1970-01-01
01:00:00.000000000 +0100
+++ new/fast-logger-3.0.1/System/Log/FastLogger/Internal.hs 2020-02-13
02:17:26.000000000 +0100
@@ -0,0 +1,14 @@
+
+-- |
+-- The contents of this module can change at any time without warning.
+module System.Log.FastLogger.Internal
+ ( module System.Log.FastLogger.IO
+ , module System.Log.FastLogger.FileIO
+ , module System.Log.FastLogger.LogStr
+ , module System.Log.FastLogger.Logger
+ ) where
+
+import System.Log.FastLogger.IO
+import System.Log.FastLogger.FileIO
+import System.Log.FastLogger.LogStr
+import System.Log.FastLogger.Logger
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/fast-logger-3.0.0/fast-logger.cabal
new/fast-logger-3.0.1/fast-logger.cabal
--- old/fast-logger-3.0.0/fast-logger.cabal 2019-10-04 03:05:51.000000000
+0200
+++ new/fast-logger-3.0.1/fast-logger.cabal 2020-02-13 02:17:26.000000000
+0100
@@ -1,5 +1,5 @@
Name: fast-logger
-Version: 3.0.0
+Version: 3.0.1
Author: Kazu Yamamoto <[email protected]>
Maintainer: Kazu Yamamoto <[email protected]>
License: BSD3
@@ -20,6 +20,7 @@
System.Log.FastLogger.File
System.Log.FastLogger.Date
System.Log.FastLogger.Types
+ System.Log.FastLogger.Internal
Other-Modules: System.Log.FastLogger.Imports
System.Log.FastLogger.IO
System.Log.FastLogger.FileIO