Glob 0.7.10 → 0.7.11
raw patch · 5 files changed
+15/−17 lines, 5 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.txt +4/−0
- Glob.cabal +1/−2
- tests/Tests/Base.hs +9/−3
- tests/Tests/Utils.hs +1/−1
- tests/Utils.hs +0/−11
CHANGELOG.txt view
@@ -1,3 +1,7 @@+0.7.11, 2016-08-08:+ Got rid of tests/Utils.hs to fix test compilation on case-insensitive+ filesystems (tests/Utils.hs vs tests/Tests/Utils.hs).+ 0.7.10, 2016-07-18: Update dependencies to allow dlist-0.8.
Glob.cabal view
@@ -1,7 +1,7 @@ Cabal-Version: >= 1.9.2 Name: Glob-Version: 0.7.10+Version: 0.7.11 Homepage: http://iki.fi/matti.niemenmaa/glob/ Synopsis: Globbing library Category: System@@ -85,4 +85,3 @@ Tests.Regression Tests.Simplifier Tests.Utils- Utils
tests/Tests/Base.hs view
@@ -1,7 +1,7 @@ -- File created: 2008-10-10 22:03:00 module Tests.Base ( PString(unPS), Path(unP), COpts(unCOpts)- , fromRight, isRight+ , (-->), fromRight, isRight ) where import System.FilePath (extSeparator, pathSeparators)@@ -9,8 +9,6 @@ import System.FilePath.Glob.Base (CompOptions(..)) -import Utils (fromRight, isRight)- newtype PString = PatString { unPS :: String } deriving Show newtype Path = Path { unP :: String } deriving Show newtype COpts = COpts { unCOpts :: CompOptions } deriving Show@@ -72,3 +70,11 @@ , maybe "" show (b :: Maybe Int) , ">" ]++fromRight (Right x) = x+fromRight _ = error "fromRight :: Left"++isRight (Right _) = True+isRight _ = False++a --> b = not a || b
tests/Tests/Utils.hs view
@@ -9,7 +9,7 @@ import System.FilePath.Glob.Utils -import Utils+import Tests.Base ((-->)) tests = testGroup "Utils" [ testProperty "overlapperLosesNoInfo" prop_overlapperLosesNoInfo
− tests/Utils.hs
@@ -1,11 +0,0 @@--- 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