Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-pretty-simple for openSUSE:Factory checked in at 2025-10-21 11:15:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-pretty-simple (Old) and /work/SRC/openSUSE:Factory/.ghc-pretty-simple.new.18484 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-pretty-simple" Tue Oct 21 11:15:19 2025 rev:7 rq:1312269 version:4.1.4.0 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-pretty-simple/ghc-pretty-simple.changes 2024-12-20 23:11:41.907139151 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-pretty-simple.new.18484/ghc-pretty-simple.changes 2025-10-21 11:16:12.678265737 +0200 @@ -1,0 +2,10 @@ +Sun Oct 12 11:25:22 UTC 2025 - Peter Simons <[email protected]> + +- Update pretty-simple to version 4.1.4.0. + ## 4.1.4.0 + + * Fix double-quoting issue with `pTraceShowWith`. + [#132](https://github.com/cdepillabout/pretty-simple/pull/132) + Thanks [@leoslf](https://github.com/leoslf)! + +------------------------------------------------------------------- Old: ---- pretty-simple-4.1.3.0.tar.gz New: ---- pretty-simple-4.1.4.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-pretty-simple.spec ++++++ --- /var/tmp/diff_new_pack.NjSAvC/_old 2025-10-21 11:16:14.242331468 +0200 +++ /var/tmp/diff_new_pack.NjSAvC/_new 2025-10-21 11:16:14.258332141 +0200 @@ -1,7 +1,7 @@ # # spec file for package ghc-pretty-simple # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 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 pretty-simple %global pkgver %{pkg_name}-%{version} Name: ghc-%{pkg_name} -Version: 4.1.3.0 +Version: 4.1.4.0 Release: 0 Summary: Pretty printer for data types with a 'Show' instance License: BSD-3-Clause ++++++ pretty-simple-4.1.3.0.tar.gz -> pretty-simple-4.1.4.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pretty-simple-4.1.3.0/CHANGELOG.md new/pretty-simple-4.1.4.0/CHANGELOG.md --- old/pretty-simple-4.1.3.0/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200 +++ new/pretty-simple-4.1.4.0/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200 @@ -1,3 +1,9 @@ +## 4.1.4.0 + +* Fix double-quoting issue with `pTraceShowWith`. + [#132](https://github.com/cdepillabout/pretty-simple/pull/132) + Thanks [@leoslf](https://github.com/leoslf)! + ## 4.1.3.0 * Remove custom setup. This makes cross-compiling `pretty-simple` a lot more diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pretty-simple-4.1.3.0/pretty-simple.cabal new/pretty-simple-4.1.4.0/pretty-simple.cabal --- old/pretty-simple-4.1.3.0/pretty-simple.cabal 2001-09-09 03:46:40.000000000 +0200 +++ new/pretty-simple-4.1.4.0/pretty-simple.cabal 2001-09-09 03:46:40.000000000 +0200 @@ -1,5 +1,5 @@ name: pretty-simple -version: 4.1.3.0 +version: 4.1.4.0 synopsis: pretty printer for data types with a 'Show' instance. description: Please see <https://github.com/cdepillabout/pretty-simple#readme README.md>. homepage: https://github.com/cdepillabout/pretty-simple diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pretty-simple-4.1.3.0/src/Debug/Pretty/Simple.hs new/pretty-simple-4.1.4.0/src/Debug/Pretty/Simple.hs --- old/pretty-simple-4.1.3.0/src/Debug/Pretty/Simple.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/pretty-simple-4.1.4.0/src/Debug/Pretty/Simple.hs 2001-09-09 03:46:40.000000000 +0200 @@ -290,7 +290,7 @@ -- @since ? {-# WARNING pTraceShowWith "'pTraceShowWith' remains in code" #-} pTraceShowWith :: Show b => (a -> b) -> a -> a -pTraceShowWith f = (show . f) >>= pTraceShow +pTraceShowWith f = pTraceWith (show . f) ------------------------------------------ -- Helpers
