Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-bech32 for openSUSE:Factory checked in at 2021-12-19 17:34:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-bech32 (Old) and /work/SRC/openSUSE:Factory/.ghc-bech32.new.2520 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-bech32" Sun Dec 19 17:34:12 2021 rev:4 rq:932792 version:1.1.2 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-bech32/ghc-bech32.changes 2021-07-05 22:22:51.797776123 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-bech32.new.2520/ghc-bech32.changes 2021-12-19 17:34:14.328256584 +0100 @@ -1,0 +2,10 @@ +Wed Nov 10 10:02:23 UTC 2021 - [email protected] + +- Update bech32 to version 1.1.2. + ## [1.1.2] - 2021-11-05 + + ### Fixed + + - Strip whitespaces from bech32 stdin to satisfy Windows `echo` command. + +------------------------------------------------------------------- Old: ---- bech32-1.1.1.tar.gz New: ---- bech32-1.1.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-bech32.spec ++++++ --- /var/tmp/diff_new_pack.bWZgP0/_old 2021-12-19 17:34:14.800256917 +0100 +++ /var/tmp/diff_new_pack.bWZgP0/_new 2021-12-19 17:34:14.804256920 +0100 @@ -19,7 +19,7 @@ %global pkg_name bech32 %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.1.1 +Version: 1.1.2 Release: 0 Summary: Implementation of the Bech32 cryptocurrency address format (BIP 0173) License: Apache-2.0 ++++++ bech32-1.1.1.tar.gz -> bech32-1.1.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bech32-1.1.1/ChangeLog.md new/bech32-1.1.2/ChangeLog.md --- old/bech32-1.1.1/ChangeLog.md 2001-09-09 03:46:40.000000000 +0200 +++ new/bech32-1.1.2/ChangeLog.md 2021-11-09 08:58:01.000000000 +0100 @@ -1,6 +1,11 @@ # Changelog <!-- This ChangeLog follows a format specified by: https://keepachangelog.com/en/1.0.0/ --> +## [1.1.2] - 2021-11-05 + +### Fixed + +- Strip whitespaces from bech32 stdin to satisfy Windows `echo` command. ## [1.1.1] - 2021-06-11 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bech32-1.1.1/Setup.hs new/bech32-1.1.2/Setup.hs --- old/bech32-1.1.1/Setup.hs 1970-01-01 01:00:00.000000000 +0100 +++ new/bech32-1.1.2/Setup.hs 2021-11-09 08:58:01.000000000 +0100 @@ -0,0 +1,2 @@ +import Distribution.Simple +main = defaultMain diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bech32-1.1.1/app/Main.hs new/bech32-1.1.2/app/Main.hs --- old/bech32-1.1.1/app/Main.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/bech32-1.1.2/app/Main.hs 2021-11-09 08:58:01.000000000 +0100 @@ -144,7 +144,7 @@ run cmd = case cmd of VersionCmd -> putStrLn $ showVersion version RunCmd {prefix} -> do - source <- T.decodeUtf8 . B8.filter (/= '\n') <$> B8.hGetContents stdin + source <- T.strip . T.decodeUtf8 <$> B8.hGetContents stdin case prefix of Nothing -> runDecode source Just hrp -> runEncode hrp source diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bech32-1.1.1/bech32.cabal new/bech32-1.1.2/bech32.cabal --- old/bech32-1.1.1/bech32.cabal 2001-09-09 03:46:40.000000000 +0200 +++ new/bech32-1.1.2/bech32.cabal 2021-11-09 08:58:01.000000000 +0100 @@ -1,5 +1,5 @@ name: bech32 -version: 1.1.1 +version: 1.1.2 synopsis: Implementation of the Bech32 cryptocurrency address format (BIP 0173). description: Implementation of the Bech32 cryptocurrency address format documented in the BIP (Bitcoin Improvement Proposal) 0173.
