Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package dhall-yaml for openSUSE:Factory checked in at 2022-02-11 23:08:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/dhall-yaml (Old) and /work/SRC/openSUSE:Factory/.dhall-yaml.new.1956 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "dhall-yaml" Fri Feb 11 23:08:29 2022 rev:12 rq:953428 version:1.2.9 Changes: -------- --- /work/SRC/openSUSE:Factory/dhall-yaml/dhall-yaml.changes 2021-11-11 21:38:10.212965152 +0100 +++ /work/SRC/openSUSE:Factory/.dhall-yaml.new.1956/dhall-yaml.changes 2022-02-11 23:10:27.059126705 +0100 @@ -1,0 +2,8 @@ +Thu Feb 3 03:31:54 UTC 2022 - Peter Simons <[email protected]> + +- Update dhall-yaml to version 1.2.9 revision 2. + 1.2.9 + + * [Build against `aeson-2.0`](https://github.com/dhall-lang/dhall-haskell/pull/2315) + +------------------------------------------------------------------- Old: ---- dhall-yaml-1.2.8.tar.gz New: ---- dhall-yaml-1.2.9.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dhall-yaml.spec ++++++ --- /var/tmp/diff_new_pack.uGUYrY/_old 2022-02-11 23:10:27.491127954 +0100 +++ /var/tmp/diff_new_pack.uGUYrY/_new 2022-02-11 23:10:27.499127977 +0100 @@ -1,7 +1,7 @@ # # spec file for package dhall-yaml # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,13 +19,13 @@ %global pkg_name dhall-yaml %bcond_with tests Name: %{pkg_name} -Version: 1.2.8 +Version: 1.2.9 Release: 0 Summary: Convert between Dhall and YAML License: GPL-3.0-or-later URL: https://hackage.haskell.org/package/%{name} Source0: https://hackage.haskell.org/package/%{name}-%{version}/%{name}-%{version}.tar.gz -Source1: https://hackage.haskell.org/package/%{name}-%{version}/revision/1.cabal#/%{name}.cabal +Source1: https://hackage.haskell.org/package/%{name}-%{version}/revision/2.cabal#/%{name}.cabal BuildRequires: chrpath BuildRequires: ghc-Cabal-devel BuildRequires: ghc-HsYAML-aeson-devel ++++++ dhall-yaml-1.2.8.tar.gz -> dhall-yaml-1.2.9.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dhall-yaml-1.2.8/CHANGELOG.md new/dhall-yaml-1.2.9/CHANGELOG.md --- old/dhall-yaml-1.2.8/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200 +++ new/dhall-yaml-1.2.9/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200 @@ -1,3 +1,7 @@ +1.2.9 + +* [Build against `aeson-2.0`](https://github.com/dhall-lang/dhall-haskell/pull/2315) + 1.2.8 * Build against `dhall-1.40.0` diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dhall-yaml-1.2.8/dhall-yaml.cabal new/dhall-yaml-1.2.9/dhall-yaml.cabal --- old/dhall-yaml-1.2.8/dhall-yaml.cabal 2001-09-09 03:46:40.000000000 +0200 +++ new/dhall-yaml-1.2.9/dhall-yaml.cabal 2001-09-09 03:46:40.000000000 +0200 @@ -1,5 +1,5 @@ Name: dhall-yaml -Version: 1.2.8 +Version: 1.2.9 Cabal-Version: >=1.10 Build-Type: Simple License: GPL-3 @@ -34,7 +34,7 @@ HsYAML >= 0.2 && < 0.3 , HsYAML-aeson >= 0.2 && < 0.3 , base >= 4.11.0.0 && < 5 , - aeson >= 1.0.0.0 && < 1.6 , + aeson >= 1.0.0.0 && < 2.1 , bytestring < 0.12, dhall >= 1.31.0 && < 1.41, dhall-json >= 1.6.0 && < 1.8 , @@ -72,7 +72,7 @@ dhall-yaml , exceptions >= 0.8.3 && < 0.11, optparse-applicative , - prettyprinter , + prettyprinter >= 1.7.0 , prettyprinter-ansi-terminal >= 1.1.1 && < 1.2 , text < 1.3 Other-Modules: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dhall-yaml-1.2.8/yaml-to-dhall/Main.hs new/dhall-yaml-1.2.9/yaml-to-dhall/Main.hs --- old/dhall-yaml-1.2.8/yaml-to-dhall/Main.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/dhall-yaml-1.2.9/yaml-to-dhall/Main.hs 2001-09-09 03:46:40.000000000 +0200 @@ -16,14 +16,14 @@ import Options.Applicative (Parser, ParserInfo) import qualified Control.Exception -import qualified Data.ByteString.Char8 as BSL8 -import qualified Dhall.YamlToDhall as YamlToDhall +import qualified Data.ByteString.Char8 as BSL8 import qualified Dhall.Util +import qualified Dhall.YamlToDhall as YamlToDhall import qualified GHC.IO.Encoding -import qualified Options.Applicative as Options -import qualified Paths_dhall_yaml as Meta +import qualified Options.Applicative as Options +import qualified Paths_dhall_yaml as Meta import qualified System.Exit -import qualified System.IO as IO +import qualified System.IO as IO -- --------------- -- Command options ++++++ dhall-yaml.cabal ++++++ --- /var/tmp/diff_new_pack.uGUYrY/_old 2022-02-11 23:10:27.611128301 +0100 +++ /var/tmp/diff_new_pack.uGUYrY/_new 2022-02-11 23:10:27.615128313 +0100 @@ -1,6 +1,6 @@ Name: dhall-yaml -Version: 1.2.8 -x-revision: 1 +Version: 1.2.9 +x-revision: 2 Cabal-Version: >=1.10 Build-Type: Simple License: GPL-3 @@ -39,8 +39,8 @@ bytestring < 0.12, dhall >= 1.31.0 && < 1.41, dhall-json >= 1.6.0 && < 1.8 , - optparse-applicative >= 0.14.0.0 && < 0.17, - text >= 0.11.1.0 && < 1.3 , + optparse-applicative >= 0.14.0.0 && < 0.18, + text >= 0.11.1.0 && < 2.1 , vector Exposed-Modules: Dhall.Yaml @@ -73,9 +73,9 @@ dhall-yaml , exceptions >= 0.8.3 && < 0.11, optparse-applicative , - prettyprinter , + prettyprinter >= 1.7.0 , prettyprinter-ansi-terminal >= 1.1.1 && < 1.2 , - text < 1.3 + text Other-Modules: Paths_dhall_yaml GHC-Options: -Wall
