Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-hspec for openSUSE:Factory checked in at 2021-01-20 18:25:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-hspec (Old) and /work/SRC/openSUSE:Factory/.ghc-hspec.new.28504 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-hspec" Wed Jan 20 18:25:16 2021 rev:13 rq:863268 version:2.7.6 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-hspec/ghc-hspec.changes 2020-12-22 11:40:45.833579157 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-hspec.new.28504/ghc-hspec.changes 2021-01-20 18:25:46.951424059 +0100 @@ -1,0 +2,16 @@ +Fri Jan 8 08:27:25 UTC 2021 - [email protected] + +- Update hspec to version 2.7.6. + ## Changes in 2.7.6 + - Add `beforeAllWith` (see #447) + +------------------------------------------------------------------- +Mon Jan 4 11:47:46 UTC 2021 - [email protected] + +- Update hspec to version 2.7.5. + Upstream has edited the change log file since the last release in + a non-trivial way, i.e. they did more than just add a new entry + at the top. You can review the file at: + http://hackage.haskell.org/package/hspec-2.7.5/src/CHANGES.markdown + +------------------------------------------------------------------- Old: ---- hspec-2.7.4.tar.gz New: ---- hspec-2.7.6.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-hspec.spec ++++++ --- /var/tmp/diff_new_pack.o5P9OK/_old 2021-01-20 18:25:48.007425064 +0100 +++ /var/tmp/diff_new_pack.o5P9OK/_new 2021-01-20 18:25:48.011425068 +0100 @@ -1,7 +1,7 @@ # # spec file for package ghc-hspec # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ %global pkg_name hspec Name: ghc-%{pkg_name} -Version: 2.7.4 +Version: 2.7.6 Release: 0 Summary: A Testing Framework for Haskell License: MIT ++++++ hspec-2.7.4.tar.gz -> hspec-2.7.6.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hspec-2.7.4/CHANGES.markdown new/hspec-2.7.6/CHANGES.markdown --- old/hspec-2.7.4/CHANGES.markdown 2020-09-01 14:11:33.000000000 +0200 +++ new/hspec-2.7.6/CHANGES.markdown 2001-09-09 03:46:40.000000000 +0200 @@ -1,5 +1,11 @@ +## Changes in 2.7.6 + - Add `beforeAllWith` (see #447) + +## Changes in 2.7.5 + - Extract source locations from `NoMethodError` and `AssertionFailed` + ## Changes in 2.7.4 - - Apply --randomize recursively + - Apply `--randomize` recursively ## Changes in 2.7.3 - Add `--randomize` diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hspec-2.7.4/LICENSE new/hspec-2.7.6/LICENSE --- old/hspec-2.7.4/LICENSE 2020-09-01 14:11:33.000000000 +0200 +++ new/hspec-2.7.6/LICENSE 2001-09-09 03:46:40.000000000 +0200 @@ -1,4 +1,4 @@ -Copyright (c) 2011-2019 Simon Hengel <[email protected]> +Copyright (c) 2011-2021 Simon Hengel <[email protected]> Copyright (c) 2011-2012 Trystan Spangler <[email protected]> Copyright (c) 2011-2011 Greg Weber <[email protected]> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hspec-2.7.4/hspec.cabal new/hspec-2.7.6/hspec.cabal --- old/hspec-2.7.4/hspec.cabal 2020-09-01 14:11:33.000000000 +0200 +++ new/hspec-2.7.6/hspec.cabal 2001-09-09 03:46:40.000000000 +0200 @@ -1,14 +1,14 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.34.2. +-- This file has been generated from package.yaml by hpack version 0.34.3. -- -- see: https://github.com/sol/hpack name: hspec -version: 2.7.4 +version: 2.7.6 license: MIT license-file: LICENSE -copyright: (c) 2011-2019 Simon Hengel, +copyright: (c) 2011-2021 Simon Hengel, (c) 2011-2012 Trystan Spangler, (c) 2011 Greg Weber maintainer: Simon Hengel <[email protected]> @@ -31,6 +31,7 @@ . The Hspec Manual is at <http://hspec.github.io/>. extra-source-files: + version.yaml CHANGES.markdown source-repository head @@ -44,8 +45,8 @@ build-depends: QuickCheck >=2.12 , base ==4.* - , hspec-core ==2.7.4 - , hspec-discover ==2.7.4 + , hspec-core ==2.7.6 + , hspec-discover ==2.7.6 , hspec-expectations ==0.8.2.* exposed-modules: Test.Hspec diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hspec-2.7.4/src/Test/Hspec.hs new/hspec-2.7.6/src/Test/Hspec.hs --- old/hspec-2.7.4/src/Test/Hspec.hs 2020-09-01 14:11:33.000000000 +0200 +++ new/hspec-2.7.6/src/Test/Hspec.hs 2001-09-09 03:46:40.000000000 +0200 @@ -56,6 +56,7 @@ , beforeWith , beforeAll , beforeAll_ +, beforeAllWith , after , after_ , afterAll diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hspec-2.7.4/version.yaml new/hspec-2.7.6/version.yaml --- old/hspec-2.7.4/version.yaml 1970-01-01 01:00:00.000000000 +0100 +++ new/hspec-2.7.6/version.yaml 2001-09-09 03:46:40.000000000 +0200 @@ -0,0 +1 @@ +&version 2.7.6
