packages feed

HTF 0.14.0.3 → 0.14.0.4

raw patch · 10 files changed

+12/−18 lines, 10 filesdep ~basedep ~randomPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: base, random

API changes (from Hackage documentation)

- Test.Framework.Pretty: fullRender :: () => Mode -> Int -> Float -> (TextDetails -> a -> a) -> a -> Doc -> a
+ Test.Framework.Pretty: fullRender :: Mode -> Int -> Float -> (TextDetails -> a -> a) -> a -> Doc -> a

Files

.travis.yml view
@@ -13,10 +13,10 @@ # The different configurations we want to test. You could also do things like # change flags or use --stack-yaml to point to a different file. env:+- HTF_TRAVIS_STACK_ARGS="--stack-yaml ${TRAVIS_BUILD_DIR}/stack-ghc-8.10.yaml" - HTF_TRAVIS_STACK_ARGS="--stack-yaml ${TRAVIS_BUILD_DIR}/stack-ghc-8.8.yaml" - HTF_TRAVIS_STACK_ARGS="--stack-yaml ${TRAVIS_BUILD_DIR}/stack-ghc-8.6.yaml" - HTF_TRAVIS_STACK_ARGS="--stack-yaml ${TRAVIS_BUILD_DIR}/stack-ghc-8.4.yaml"-- HTF_TRAVIS_STACK_ARGS="--stack-yaml ${TRAVIS_BUILD_DIR}/stack-ghc-8.2.yaml"  before_install: # Download and unpack the stack executable
ChangeLog view
@@ -1,5 +1,6 @@-* 0.14.0.3 (2019-11-27)-  - improve local-htfpp+* 0.14.0.4 (2021-01-26)+  - fix #99+  - hopefully fix #97  * 0.14.0.2 (2019-11-27)   - use haskell-src from hackage
HTF.cabal view
@@ -1,5 +1,5 @@ Name:             HTF-Version:          0.14.0.3+Version:          0.14.0.4 License:          LGPL-2.1 License-File:     LICENSE Copyright:        (c) 2005-2015 Stefan Wehr
README.md view
@@ -1,6 +1,6 @@ # HTF - The Haskell Test Framework -[![Build Status](https://travis-ci.org/skogsbaer/HTF.svg?branch=master)](https://travis-ci.org/skogsbaer/HTF)+[![Build Status](https://travis-ci.org/skogsbaer/HTF.svg?branch=master)](https://travis-ci.com/github/skogsbaer/HTF) [![Hackage](https://img.shields.io/hackage/v/HTF.svg)](http://hackage.haskell.org/package/HTF)  * Documentation:     http://hackage.haskell.org/package/HTF
Test/Framework/AssertM.hs view
@@ -13,7 +13,6 @@  import Data.Maybe import qualified Data.Text as T-import Control.Applicative (Applicative(..)) import Control.Monad       (liftM, ap)  import Test.Framework.TestInterface
Test/Framework/HUnitWrapper.hs view
@@ -1,4 +1,4 @@-{-# OPTIONS_GHC -cpp -pgmPcpphs -optP --layout -optP --hashes -optP --cpp #-}+{-# OPTIONS_GHC -cpp -pgmP "cpphs --layout --hashes --cpp" #-} {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE OverloadedStrings #-}
Test/Framework/Preprocessor.hs view
@@ -1,4 +1,4 @@-{-# OPTIONS_GHC -cpp -pgmPcpphs -optP --layout -optP --hashes -optP --cpp #-}+{-# OPTIONS_GHC -cpp -pgmP "cpphs --layout --hashes --cpp" #-} {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE BangPatterns #-}
Test/Framework/QuickCheckWrapper.hs view
@@ -63,9 +63,6 @@ import qualified Data.List as List import System.IO.Unsafe (unsafePerformIO) import Data.IORef-#if MIN_VERSION_QuickCheck(2,7,0)-import System.Random-#endif  import Test.QuickCheck #if !MIN_VERSION_QuickCheck(2,7,0)@@ -241,8 +238,5 @@     case readM str of       Just x -> args { replay = x }       Nothing ->-          case readM str of-            Just (_ :: Maybe (StdGen, Int)) ->-                error ("Your replay parameter has been produced with QuickCheck <= 2.6. It cannot be used with QuickCheck >= 2.7")-            Nothing -> error ("Could not parse replay parameter from string " ++ show str)+          error ("Could not parse replay parameter from string " ++ show str) #endif
stack-ghc-8.8.yaml view
@@ -1,4 +1,4 @@-resolver: nightly-2019-12-07+resolver: lts-16.20 flags: {} packages: - '.'
stack.yaml view
@@ -1,6 +1,6 @@-resolver: lts-14.3+resolver: lts-16.20 flags: {} packages: - '.' extra-deps:-- haskell-src-1.0.3.0+- haskell-src-1.0.3.1