Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-Decimal for openSUSE:Factory checked in at 2021-03-24 16:11:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-Decimal (Old) and /work/SRC/openSUSE:Factory/.ghc-Decimal.new.2401 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-Decimal" Wed Mar 24 16:11:51 2021 rev:4 rq:880423 version:0.5.2 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-Decimal/ghc-Decimal.changes 2020-12-22 11:33:32.309142233 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-Decimal.new.2401/ghc-Decimal.changes 2021-03-24 16:11:52.579871272 +0100 @@ -1,0 +2,7 @@ +Sun Mar 14 22:18:56 UTC 2021 - psim...@suse.com + +- Update Decimal to version 0.5.2. + Upstream has not updated the file "changelog.md" since the last + release. + +------------------------------------------------------------------- Old: ---- Decimal-0.5.1.tar.gz New: ---- Decimal-0.5.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-Decimal.spec ++++++ --- /var/tmp/diff_new_pack.EWA5yD/_old 2021-03-24 16:11:53.051871767 +0100 +++ /var/tmp/diff_new_pack.EWA5yD/_new 2021-03-24 16:11:53.051871767 +0100 @@ -1,7 +1,7 @@ # # spec file for package ghc-Decimal # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # 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 Decimal %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.5.1 +Version: 0.5.2 Release: 0 Summary: Decimal numbers with variable precision License: BSD-3-Clause ++++++ Decimal-0.5.1.tar.gz -> Decimal-0.5.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Decimal-0.5.1/Decimal.cabal new/Decimal-0.5.2/Decimal.cabal --- old/Decimal-0.5.1/Decimal.cabal 2018-01-03 16:31:15.000000000 +0100 +++ new/Decimal-0.5.2/Decimal.cabal 2021-03-14 10:36:36.000000000 +0100 @@ -1,19 +1,19 @@ Name: Decimal -Version: 0.5.1 +Version: 0.5.2 License: BSD3 License-file: LICENSE.txt -Copyright: Paul Johnson, 2013, 2018. +Copyright: Paul Johnson, 2013, 2018, 2021. Author: Paul Johnson Maintainer: p...@cogito.org.uk Stability: beta Category: Math -Cabal-version: >=1.18 +Cabal-version: 1.18 Build-type: Simple Synopsis: Decimal numbers with variable precision Description: A decimal number has an integer mantissa and a negative exponent. The exponent can be interpreted as the number of decimal places in the value. -tested-with: GHC==8.2.2 +tested-with: GHC==8.2.2, GHC==8.10.4 homepage: https://github.com/PaulJohnson/Haskell-Decimal extra-doc-files: LICENSE.txt, README.md, changelog.md diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Decimal-0.5.1/src/Data/Decimal.hs new/Decimal-0.5.2/src/Data/Decimal.hs --- old/Decimal-0.5.1/src/Data/Decimal.hs 2018-01-03 16:10:42.000000000 +0100 +++ new/Decimal-0.5.2/src/Data/Decimal.hs 2021-03-14 10:08:32.000000000 +0100 @@ -66,8 +66,8 @@ -- will return \"1.500\". Conversely the "Read" instance will use the decimal -- places to determine the precision. data DecimalRaw i = Decimal { - decimalPlaces :: ! Word8, - decimalMantissa :: ! i} + decimalPlaces :: !Word8, + decimalMantissa :: !i} deriving (Typeable)