Hello community, here is the log from the commit of package dhall-json for openSUSE:Factory checked in at 2020-10-27 19:02:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/dhall-json (Old) and /work/SRC/openSUSE:Factory/.dhall-json.new.3463 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "dhall-json" Tue Oct 27 19:02:51 2020 rev:3 rq:844303 version:1.7.3 Changes: -------- --- /work/SRC/openSUSE:Factory/dhall-json/dhall-json.changes 2020-09-27 11:49:16.368010888 +0200 +++ /work/SRC/openSUSE:Factory/.dhall-json.new.3463/dhall-json.changes 2020-10-27 19:03:09.186926948 +0100 @@ -1,0 +2,9 @@ +Thu Oct 22 02:01:06 UTC 2020 - [email protected] + +- Update dhall-json to version 1.7.3. + 1.7.3 + + * [Fix command-line completions for files](https://github.com/dhall-lang/dhall-haskell/pull/2034) + * [Support new `Text/replace` built-in](https://github.com/dhall-lang/dhall-haskell/pull/2063) + +------------------------------------------------------------------- Old: ---- dhall-json-1.7.2.tar.gz New: ---- dhall-json-1.7.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dhall-json.spec ++++++ --- /var/tmp/diff_new_pack.8MAXnv/_old 2020-10-27 19:03:10.002927541 +0100 +++ /var/tmp/diff_new_pack.8MAXnv/_new 2020-10-27 19:03:10.006927545 +0100 @@ -19,7 +19,7 @@ %global pkg_name dhall-json %bcond_with tests Name: %{pkg_name} -Version: 1.7.2 +Version: 1.7.3 Release: 0 Summary: Convert between Dhall and JSON or YAML License: BSD-3-Clause ++++++ dhall-json-1.7.2.tar.gz -> dhall-json-1.7.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dhall-json-1.7.2/CHANGELOG.md new/dhall-json-1.7.3/CHANGELOG.md --- old/dhall-json-1.7.2/CHANGELOG.md 2020-09-11 07:02:30.000000000 +0200 +++ new/dhall-json-1.7.3/CHANGELOG.md 2020-10-21 06:16:39.000000000 +0200 @@ -1,3 +1,8 @@ +1.7.3 + +* [Fix command-line completions for files](https://github.com/dhall-lang/dhall-haskell/pull/2034) +* [Support new `Text/replace` built-in](https://github.com/dhall-lang/dhall-haskell/pull/2063) + 1.7.2 * [The `--documents` flag now wraps non-`List`s in a document](https://github.com/dhall-lang/dhall-haskell/pull/1977) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dhall-json-1.7.2/dhall-json.cabal new/dhall-json-1.7.3/dhall-json.cabal --- old/dhall-json-1.7.2/dhall-json.cabal 2020-09-11 07:02:30.000000000 +0200 +++ new/dhall-json-1.7.3/dhall-json.cabal 2020-10-21 06:16:39.000000000 +0200 @@ -1,5 +1,5 @@ Name: dhall-json -Version: 1.7.2 +Version: 1.7.3 Cabal-Version: >=1.10 Build-Type: Simple Tested-With: GHC == 8.4.3, GHC == 8.6.1 @@ -44,7 +44,7 @@ aeson-yaml >= 1.1.0 && < 1.2 , bytestring < 0.11, containers >= 0.5.9 && < 0.7 , - dhall >= 1.35.0 && < 1.36, + dhall >= 1.36.0 && < 1.37, exceptions >= 0.8.3 && < 0.11, filepath < 1.5 , lens-family-core >= 1.0.0 && < 2.2 , diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dhall-json-1.7.2/dhall-to-json/Main.hs new/dhall-json-1.7.3/dhall-to-json/Main.hs --- old/dhall-json-1.7.2/dhall-to-json/Main.hs 2020-09-11 07:02:30.000000000 +0200 +++ new/dhall-json-1.7.3/dhall-to-json/Main.hs 2020-10-21 06:16:39.000000000 +0200 @@ -92,6 +92,7 @@ ( Options.long "file" <> Options.help "Read expression from a file instead of standard input" <> Options.metavar "FILE" + <> Options.action "file" ) parseOutput = @@ -99,6 +100,7 @@ ( Options.long "output" <> Options.help "Write JSON to a file instead of standard output" <> Options.metavar "FILE" + <> Options.action "file" ) parserInfo :: ParserInfo Options diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dhall-json-1.7.2/json-to-dhall/Main.hs new/dhall-json-1.7.3/json-to-dhall/Main.hs --- old/dhall-json-1.7.2/json-to-dhall/Main.hs 2020-09-11 07:02:30.000000000 +0200 +++ new/dhall-json-1.7.3/json-to-dhall/Main.hs 2020-10-21 06:16:39.000000000 +0200 @@ -108,6 +108,7 @@ ( Options.long "file" <> Options.help "Read JSON from a file instead of standard input" <> Options.metavar "FILE" + <> Options.action "file" ) parseOutput = @@ -115,6 +116,7 @@ ( Options.long "output" <> Options.help "Write Dhall expression to a file instead of standard output" <> Options.metavar "FILE" + <> Options.action "file" ) parseASCII = diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dhall-json-1.7.2/src/Dhall/DhallToYaml/Main.hs new/dhall-json-1.7.3/src/Dhall/DhallToYaml/Main.hs --- old/dhall-json-1.7.2/src/Dhall/DhallToYaml/Main.hs 2020-09-11 07:02:30.000000000 +0200 +++ new/dhall-json-1.7.3/src/Dhall/DhallToYaml/Main.hs 2020-10-21 06:16:39.000000000 +0200 @@ -48,6 +48,7 @@ ( Options.long "file" <> Options.help "Read expression from a file instead of standard input" <> Options.metavar "FILE" + <> Options.action "file" ) parseVersion = @@ -62,6 +63,7 @@ ( Options.long "output" <> Options.help "Write YAML to a file instead of standard output" <> Options.metavar "FILE" + <> Options.action "file" ) parseNoEdit = diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dhall-json-1.7.2/src/Dhall/JSON.hs new/dhall-json-1.7.3/src/Dhall/JSON.hs --- old/dhall-json-1.7.2/src/Dhall/JSON.hs 2020-09-11 07:02:30.000000000 +0200 +++ new/dhall-json-1.7.3/src/Dhall/JSON.hs 2020-10-21 06:16:39.000000000 +0200 @@ -876,6 +876,9 @@ a' = loop a b' = loop b + Core.TextReplace -> + Core.TextReplace + Core.TextShow -> Core.TextShow
