packages feed

Glob 0.7.8 → 0.7.9

raw patch · 3 files changed

+17/−1 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.txt view
@@ -1,3 +1,7 @@+0.7.9, 2016-07-02:+	Add missing Utils module to test suite, so that the tests provided with+	the sdist tarball actually run.+ 0.7.8, 2016-07-01: 	Add dependency on transformers-compat to allow using 	Control.Monad.Trans.Except also with older library versions.
Glob.cabal view
@@ -1,7 +1,7 @@ Cabal-Version: >= 1.9.2  Name:        Glob-Version:     0.7.8+Version:     0.7.9 Homepage:    http://iki.fi/matti.niemenmaa/glob/ Synopsis:    Globbing library Category:    System@@ -85,3 +85,4 @@                   Tests.Regression                   Tests.Simplifier                   Tests.Utils+                  Utils
+ tests/Utils.hs view
@@ -0,0 +1,11 @@+-- File created: 2008-10-15 20:50:31++module Utils where++fromRight (Right x) = x+fromRight _         = error "fromRight :: Left"++isRight (Right _) = True+isRight _         = False++a --> b = not a || b