Skip to content

Commit fbf8b19

Browse files
committed
Updates for v0.11.1
1 parent cffe1c3 commit fbf8b19

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

bower.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
"output"
1414
],
1515
"dependencies": {
16-
"purescript-functions": "^2.0.0",
17-
"purescript-arraybuffer-types": "^0.2.0",
18-
"purescript-maybe": "^2.0.0",
19-
"purescript-eff": "^2.0.0",
20-
"purescript-uint": "^0.3.0"
16+
"purescript-functions": "^3.0.0",
17+
"purescript-arraybuffer-types": "^1.0.0",
18+
"purescript-maybe": "^3.0.0",
19+
"purescript-eff": "^3.0.0",
20+
"purescript-uint": "^1.0.0"
2121
},
2222
"devDependencies": {
2323
"purescript-debug": "^2.0.0",
24-
"purescript-quickcheck": "^3.0.0",
24+
"purescript-quickcheck": "^4.0.0",
2525
"purescript-partial": "^1.2.0"
2626
}
2727
}

src/Data/ArrayBuffer/ArrayBuffer.purs

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ module Data.ArrayBuffer.ArrayBuffer( ARRAY_BUFFER()
66
, fromString
77
) where
88

9-
import Control.Monad.Eff (Eff)
9+
import Control.Monad.Eff (kind Effect, Eff)
1010
import Data.Function.Uncurried (Fn3, runFn3)
1111
import Data.ArrayBuffer.Types (ArrayBuffer, ByteOffset, ByteLength)
1212

13-
foreign import data ARRAY_BUFFER :: !
13+
foreign import data ARRAY_BUFFER :: Effect
1414

1515
-- | Create an `ArrayBuffer` with the given capacity.
1616
foreign import create :: forall e. ByteLength -> Eff (arrayBuffer :: ARRAY_BUFFER | e) ArrayBuffer

test/Main.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ assertEquals expected actual = quickCheck' 1 $ expected == actual
2323
main :: forall e
2424
. Eff ( console :: CONSOLE
2525
, random :: RANDOM
26-
, err :: EXCEPTION
26+
, exception :: EXCEPTION
2727
, arrayBuffer :: AB.ARRAY_BUFFER
2828
| e )
2929
Unit

0 commit comments

Comments
 (0)