Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-doclayout for openSUSE:Factory checked in at 2021-03-24 16:15:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-doclayout (Old) and /work/SRC/openSUSE:Factory/.ghc-doclayout.new.2401 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-doclayout" Wed Mar 24 16:15:09 2021 rev:6 rq:880704 version:0.3.0.2 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-doclayout/ghc-doclayout.changes 2020-12-22 11:38:46.845459235 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-doclayout.new.2401/ghc-doclayout.changes 2021-03-24 16:15:58.704129520 +0100 @@ -1,0 +2,21 @@ +Tue Mar 16 09:55:00 UTC 2021 - psim...@suse.com + +- Update doclayout to version 0.3.0.2. + ## 0.3.0.2 + + * NOINLINE `literal` instead of `fromString` (#2, sjakobi). + This produces a further reduction in allocations and + pandoc compile time. + +------------------------------------------------------------------- +Sun Mar 14 23:18:20 UTC 2021 - psim...@suse.com + +- Update doclayout to version 0.3.0.1. + ## 0.3.0.1 + + * NOINLINE `fromString` (#1). + @sjakobi reports that this change reduced total allocations + for building pandoc-2.12 with GHC 8.10.4 by 8.5% and reduced + peak allocations are reduced from 3854MB to 3389MB. + +------------------------------------------------------------------- Old: ---- doclayout-0.3.tar.gz New: ---- doclayout-0.3.0.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-doclayout.spec ++++++ --- /var/tmp/diff_new_pack.1aZD39/_old 2021-03-24 16:15:59.176130016 +0100 +++ /var/tmp/diff_new_pack.1aZD39/_new 2021-03-24 16:15:59.180130021 +0100 @@ -1,7 +1,7 @@ # # spec file for package ghc-doclayout # -# 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 doclayout %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.3 +Version: 0.3.0.2 Release: 0 Summary: A prettyprinting library for laying out text documents License: BSD-3-Clause ++++++ doclayout-0.3.tar.gz -> doclayout-0.3.0.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/doclayout-0.3/changelog.md new/doclayout-0.3.0.2/changelog.md --- old/doclayout-0.3/changelog.md 2020-01-13 08:15:42.000000000 +0100 +++ new/doclayout-0.3.0.2/changelog.md 2021-03-15 22:20:36.000000000 +0100 @@ -1,5 +1,18 @@ # doclayout +## 0.3.0.2 + + * NOINLINE `literal` instead of `fromString` (#2, sjakobi). + This produces a further reduction in allocations and + pandoc compile time. + +## 0.3.0.1 + + * NOINLINE `fromString` (#1). + @sjakobi reports that this change reduced total allocations + for building pandoc-2.12 with GHC 8.10.4 by 8.5% and reduced + peak allocations are reduced from 3854MB to 3389MB. + ## 0.3 * Add foldlChar to signature of HasChars [API change]. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/doclayout-0.3/doclayout.cabal new/doclayout-0.3.0.2/doclayout.cabal --- old/doclayout-0.3/doclayout.cabal 2020-01-13 07:58:19.000000000 +0100 +++ new/doclayout-0.3.0.2/doclayout.cabal 2021-03-15 22:19:41.000000000 +0100 @@ -1,5 +1,5 @@ name: doclayout -version: 0.3 +version: 0.3.0.2 synopsis: A prettyprinting library for laying out text documents. description: doclayout is a prettyprinting library for laying out text documents, with several features not present diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/doclayout-0.3/src/Text/DocLayout.hs new/doclayout-0.3.0.2/src/Text/DocLayout.hs --- old/doclayout-0.3/src/Text/DocLayout.hs 2020-01-13 07:54:35.000000000 +0100 +++ new/doclayout-0.3.0.2/src/Text/DocLayout.hs 2021-03-15 22:18:46.000000000 +0100 @@ -488,6 +488,7 @@ then Empty else Text (realLength s) s) $ splitLines x +{-# NOINLINE literal #-} -- | A literal string. (Like 'literal', but restricted to String.) text :: HasChars a => String -> Doc a