Glob 0.9.2 → 0.9.3
raw patch · 3 files changed
+10/−4 lines, 3 filesdep ~containersPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: containers
API changes (from Hackage documentation)
Files
- CHANGELOG.txt +6/−0
- Glob.cabal +3/−3
- tests/Tests/Base.hs +1/−1
CHANGELOG.txt view
@@ -1,3 +1,9 @@+0.9.3, 2018-09-22:+ Updated dependencies to allow containers-0.7 (GHC 8.6). Thanks to+ chessai for the merge request.++ Updated tests to compile with GHC 8.6.+ 0.9.2, 2018-02-26: Updated dependencies to allow transformers-compat-0.6.
Glob.cabal view
@@ -1,7 +1,7 @@ Cabal-Version: >= 1.9.2 Name: Glob-Version: 0.9.2+Version: 0.9.3 Homepage: http://iki.fi/matti.niemenmaa/glob/ Synopsis: Globbing library Category: System@@ -26,7 +26,7 @@ Library Build-Depends: base >= 4 && < 5- , containers < 0.6+ , containers < 0.7 , directory < 1.4 , dlist >= 0.4 && < 0.9 , filepath >= 1.1 && < 1.5@@ -56,7 +56,7 @@ main-is: Main.hs Build-Depends: base >= 4 && < 5- , containers < 0.6+ , containers < 0.7 , directory < 1.4 , dlist >= 0.4 && < 0.9 , filepath >= 1.1 && < 1.5
tests/Tests/Base.hs view
@@ -43,7 +43,7 @@ instance Arbitrary COpts where arbitrary = do- [a,b,c,d,e,f] <- vector 6+ (a,b,c,d,e,f) <- arbitrary return.COpts $ CompOptions a b c d e f False