From f1f391a608825056afdb47b0275c9f6766a82ef5 Mon Sep 17 00:00:00 2001 From: Nicholas Wolverson Date: Wed, 23 Sep 2015 22:19:44 +0100 Subject: [PATCH] Bump versions --- bower.json | 4 ++-- test/Main.purs | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/bower.json b/bower.json index 7e385c5..9aa52b8 100644 --- a/bower.json +++ b/bower.json @@ -20,11 +20,11 @@ "purescript-control": "^0.3.0", "purescript-arrays": "^0.4.0", "purescript-maybe": "^0.3.0", - "purescript-strings": "^0.5.0", + "purescript-strings": "~0.7.0", "purescript-foldable-traversable": "^0.4.0" }, "devDependencies": { "purescript-math": "^0.2.0", - "purescript-quickcheck": "^0.6.0" + "purescript-quickcheck": "^0.12.0" } } diff --git a/test/Main.purs b/test/Main.purs index 7eaf8fb..204c79d 100644 --- a/test/Main.purs +++ b/test/Main.purs @@ -1,5 +1,5 @@ module Test.Main where - + import Prelude import Data.Maybe @@ -17,6 +17,7 @@ import Text.Parsing.StringParser.String import Text.Parsing.StringParser.Expr import qualified Test.QuickCheck as QC +import qualified Test.QuickCheck.LCG as QC parens :: forall a. Parser a -> Parser a parens = between (string "(") (string ")")