Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-hedgehog for openSUSE:Factory checked in at 2022-10-13 15:44:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-hedgehog (Old) and /work/SRC/openSUSE:Factory/.ghc-hedgehog.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-hedgehog" Thu Oct 13 15:44:07 2022 rev:8 rq:1009707 version:1.1.2 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-hedgehog/ghc-hedgehog.changes 2022-08-01 21:29:57.785581438 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-hedgehog.new.2275/ghc-hedgehog.changes 2022-10-13 15:44:39.115031531 +0200 @@ -1,0 +2,9 @@ +Sat Sep 3 08:12:56 UTC 2022 - Peter Simons <[email protected]> + +- Update hedgehog to version 1.1.2. + 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/hedgehog-1.1.2/src/CHANGELOG.md + +------------------------------------------------------------------- Old: ---- hedgehog-1.1.1.tar.gz hedgehog.cabal New: ---- hedgehog-1.1.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-hedgehog.spec ++++++ --- /var/tmp/diff_new_pack.ZgWGKj/_old 2022-10-13 15:44:39.775032820 +0200 +++ /var/tmp/diff_new_pack.ZgWGKj/_new 2022-10-13 15:44:39.779032827 +0200 @@ -19,13 +19,12 @@ %global pkg_name hedgehog %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.1.1 +Version: 1.1.2 Release: 0 Summary: Release with confidence License: BSD-3-Clause URL: https://hackage.haskell.org/package/%{pkg_name} Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz -Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/2.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel BuildRequires: ghc-ansi-terminal-devel BuildRequires: ghc-async-devel @@ -79,7 +78,6 @@ %prep %autosetup -n %{pkg_name}-%{version} -cp -p %{SOURCE1} %{pkg_name}.cabal %build %ghc_lib_build ++++++ hedgehog-1.1.1.tar.gz -> hedgehog-1.1.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hedgehog-1.1.1/CHANGELOG.md new/hedgehog-1.1.2/CHANGELOG.md --- old/hedgehog-1.1.1/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200 +++ new/hedgehog-1.1.2/CHANGELOG.md 2022-09-02 17:43:34.000000000 +0200 @@ -1,3 +1,8 @@ +## Version 1.1.2 (2022-09-02) + +* Support GHC 9.4 ([#461][461], [@ysangkok][ysangkok]) +* Allow newer dependencies ([#457][457], [@ysangkok][ysangkok]) + ## Version 1.1.1 (2022-01-29) * Support using fixed seed via `HEDGEHOG_SEED` ([#446][446], [@simfleischman][simfleischman] / [@moodmosaic][moodmosaic]) @@ -241,10 +246,15 @@ https://github.com/patrickt [simfleischman]: https://github.com/simfleischman +[ysangkok]: + https://github.com/ysangkok [jhrcek]: https://github.com/jhrcek - +[461]: + https://github.com/hedgehogqa/haskell-hedgehog/pull/461 +[457]: + https://github.com/hedgehogqa/haskell-hedgehog/pull/457 [446]: https://github.com/hedgehogqa/haskell-hedgehog/pull/446 [436]: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hedgehog-1.1.1/hedgehog.cabal new/hedgehog-1.1.2/hedgehog.cabal --- old/hedgehog-1.1.1/hedgehog.cabal 2001-09-09 03:46:40.000000000 +0200 +++ new/hedgehog-1.1.2/hedgehog.cabal 2022-09-02 17:44:44.000000000 +0200 @@ -1,4 +1,4 @@ -version: 1.1.1 +version: 1.1.2 name: hedgehog @@ -71,8 +71,8 @@ , random >= 1.1 && < 1.3 , resourcet >= 1.1 && < 1.3 , stm >= 2.4 && < 2.6 - , template-haskell >= 2.10 && < 2.19 - , text >= 1.1 && < 1.3 + , template-haskell >= 2.10 && < 2.20 + , text >= 1.1 && < 2.1 , time >= 1.4 && < 1.13 , transformers >= 0.5 && < 0.6 , transformers-base >= 0.4.5.1 && < 0.5 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hedgehog-1.1.1/src/Hedgehog/Internal/Gen.hs new/hedgehog-1.1.2/src/Hedgehog/Internal/Gen.hs --- old/hedgehog-1.1.1/src/Hedgehog/Internal/Gen.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/hedgehog-1.1.2/src/Hedgehog/Internal/Gen.hs 2022-09-02 17:45:07.000000000 +0200 @@ -18,6 +18,7 @@ {-# LANGUAGE StandaloneDeriving #-} {-# LANGUAGE TupleSections #-} {-# LANGUAGE TypeFamilies #-} +{-# LANGUAGE TypeOperators #-} {-# LANGUAGE UndecidableInstances #-} -- MonadBase #if __GLASGOW_HASKELL__ >= 806 {-# LANGUAGE DerivingVia #-}
