Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-yaml for openSUSE:Factory checked in at 2023-06-22 23:25:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-yaml (Old) and /work/SRC/openSUSE:Factory/.ghc-yaml.new.15902 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-yaml" Thu Jun 22 23:25:40 2023 rev:42 rq:1094457 version:0.11.11.1 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-yaml/ghc-yaml.changes 2023-04-04 21:25:18.498857893 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-yaml.new.15902/ghc-yaml.changes 2023-06-22 23:26:14.893898844 +0200 @@ -1,0 +2,8 @@ +Wed Jun 14 12:46:51 UTC 2023 - Peter Simons <psim...@suse.com> + +- Update yaml to version 0.11.11.1. + ## 0.11.11.1 + + * For optparse-applicative-0.18: use `pretty` instead of `text` [#216](https://github.com/snoyberg/yaml/pull/216) + +------------------------------------------------------------------- Old: ---- yaml-0.11.11.0.tar.gz New: ---- yaml-0.11.11.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-yaml.spec ++++++ --- /var/tmp/diff_new_pack.dB82OD/_old 2023-06-22 23:26:15.437901618 +0200 +++ /var/tmp/diff_new_pack.dB82OD/_new 2023-06-22 23:26:15.441901639 +0200 @@ -20,7 +20,7 @@ %global pkgver %{pkg_name}-%{version} %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.11.11.0 +Version: 0.11.11.1 Release: 0 Summary: Support for parsing and rendering YAML documents License: BSD-3-Clause ++++++ yaml-0.11.11.0.tar.gz -> yaml-0.11.11.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yaml-0.11.11.0/ChangeLog.md new/yaml-0.11.11.1/ChangeLog.md --- old/yaml-0.11.11.0/ChangeLog.md 2023-02-24 03:55:42.000000000 +0100 +++ new/yaml-0.11.11.1/ChangeLog.md 2023-06-14 14:46:13.000000000 +0200 @@ -1,5 +1,9 @@ # ChangeLog for yaml +## 0.11.11.1 + +* For optparse-applicative-0.18: use `pretty` instead of `text` [#216](https://github.com/snoyberg/yaml/pull/216) + ## 0.11.11.0 * Fix ambiguous occurrence `AesonException` diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yaml-0.11.11.0/exe/json2yaml.hs new/yaml-0.11.11.1/exe/json2yaml.hs --- old/yaml-0.11.11.0/exe/json2yaml.hs 2023-02-06 18:07:46.000000000 +0100 +++ new/yaml-0.11.11.1/exe/json2yaml.hs 2023-06-14 14:44:55.000000000 +0200 @@ -15,7 +15,7 @@ , long, metavar, short, strArgument, strOption, value ) import Options.Applicative.Help.Pretty - ( vcat, text ) + ( vcat, pretty ) import System.Exit ( die ) @@ -43,11 +43,11 @@ <> footerDoc fdoc where - hdoc = Just $ vcat $ map text + hdoc = Just $ vcat $ map pretty [ versionText self , "Convert JSON to YAML." ] - fdoc = Just $ text $ concat + fdoc = Just $ pretty $ concat [ "The old call pattern '" , self , " IN OUT' is also accepted, but deprecated." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yaml-0.11.11.0/exe/yaml2json.hs new/yaml-0.11.11.1/exe/yaml2json.hs --- old/yaml-0.11.11.0/exe/yaml2json.hs 2023-02-06 18:07:46.000000000 +0100 +++ new/yaml-0.11.11.1/exe/yaml2json.hs 2023-06-14 14:44:55.000000000 +0200 @@ -17,7 +17,7 @@ , long, metavar, short, strArgument, strOption, value ) import Options.Applicative.Help.Pretty - ( vcat, text ) + ( vcat, pretty ) import Common ( versionText, versionOption, numericVersionOption, dashToNothing ) @@ -43,7 +43,7 @@ (headerDoc hdoc) where - hdoc = Just $ vcat $ map text + hdoc = Just $ vcat $ map pretty [ versionText self , "Convert YAML to JSON." ] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yaml-0.11.11.0/yaml.cabal new/yaml-0.11.11.1/yaml.cabal --- old/yaml-0.11.11.0/yaml.cabal 2023-02-24 06:17:05.000000000 +0100 +++ new/yaml-0.11.11.1/yaml.cabal 2023-06-14 14:46:19.000000000 +0200 @@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: yaml -version: 0.11.11.0 +version: 0.11.11.1 synopsis: Support for parsing and rendering YAML documents. description: README and API documentation are available at <https://www.stackage.org/package/yaml> category: Data