packages feed

chell 0.1.2 → 0.1.3

raw patch · 2 files changed

+10/−5 lines, 2 filesdep ~template-haskellPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: template-haskell

API changes (from Hackage documentation)

Files

chell.cabal view
@@ -1,5 +1,5 @@ name: chell-version: 0.1.2+version: 0.1.3 synopsis: Quiet test runner license: MIT license-file: license.txt@@ -13,8 +13,13 @@  source-repository head   type: bazaar-  location: https://john-millikin.com/software/chell/+  location: https://john-millikin.com/branches/chell/0.1/ +source-repository this+  type: bazaar+  location: https://john-millikin.com/branches/chell/0.1/+  tag: chell_0.1.3+ library   ghc-options: -Wall   hs-source-dirs: src@@ -24,7 +29,7 @@     , bytestring >= 0.9 && < 0.10     , patience >= 0.1 && < 0.2     , random-    , template-haskell >= 2.3 && < 2.7+    , template-haskell >= 2.3 && < 2.8     , text >= 0.7     , transformers >= 0.2 && < 0.3 
src/Test/Chell.hs view
@@ -217,8 +217,8 @@  -- | Cause a test to immediately fail, with a message. ----- 'fail' is a Template Haskell macro, to retain the source-file location--- from which it was used. Its effective type is:+-- 'Test.Chell.fail' is a Template Haskell macro, to retain the source-file+-- location from which it was used. Its effective type is: -- -- @ -- $fail :: 'Text' -> 'Assertions' a