packages feed

snap-core 0.2.13 → 0.2.14

raw patch · 3 files changed

+6/−6 lines, 3 filesdep ~text

Dependency ranges changed: text

Files

snap-core.cabal view
@@ -1,5 +1,5 @@ name:           snap-core-version:        0.2.13+version:        0.2.14 synopsis:       Snap: A Haskell Web Framework (Core)  description:@@ -162,7 +162,7 @@     monads-fd,     old-locale,     old-time,-    text >= 0.7.1 && <0.8,+    text >= 0.10 && <0.11,     time,     transformers,     unix-compat,@@ -205,7 +205,7 @@     old-locale,     old-time,     template-haskell,-    text >= 0.7.1 && <0.8,+    text >= 0.10 && <0.11,     time,     transformers,     unix-compat,
test/snap-core-testsuite.cabal view
@@ -45,7 +45,7 @@     test-framework >= 0.3.1 && <0.4,     test-framework-hunit >= 0.2.5 && < 0.3,     test-framework-quickcheck2 >= 0.2.6 && < 0.3,-    text >= 0.7.1 && <0.8,+    text >= 0.10 && <0.11,     time,     transformers,     unix-compat,
test/suite/Snap/Util/FileServe/Tests.hs view
@@ -253,12 +253,12 @@     b <- getBody r     assertEqual "foo.bin" "FOO\n" b -    r2 <- goIfRange fs "foo.bin" (1,2) "Tue, 1 Oct 2030 04:58:08 GMT"+    r2 <- goIfRange fs "foo.bin" (1,2) "Tue, 01 Oct 2030 04:58:08 GMT"     assertEqual "foo.bin 206" 206 $ rspStatus r2     b2 <- getBody r2     assertEqual "foo.bin partial" "OO" b2 -    r3 <- goIfRange fs "foo.bin" (1,24324) "Tue, 1 Oct 2030 04:58:08 GMT"+    r3 <- goIfRange fs "foo.bin" (1,24324) "Tue, 01 Oct 2030 04:58:08 GMT"     assertEqual "foo.bin 200" 200 $ rspStatus r3     b3 <- getBody r3     assertEqual "foo.bin" "FOO\n" b3