Skip to content

Commit 43da907

Browse files
authored
Merge pull request #6 from purescript/bump
Prepare for 2.0 release
2 parents 9a8f00d + b5d4614 commit 43da907

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
"package.json"
1818
],
1919
"dependencies": {
20-
"purescript-eff": "^1.0.0"
20+
"purescript-eff": "^2.0.0"
2121
}
2222
}

src/Control/Monad/ST.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
/* global exports */
21
"use strict";
32

4-
// module Control.Monad.ST
5-
63
exports.newSTRef = function (val) {
74
return function () {
85
return { value: val };

src/Control/Monad/ST.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module Control.Monad.ST where
22

3-
import Control.Monad.Eff (Eff(), runPure)
3+
import Control.Monad.Eff (Eff, runPure)
44

55
-- | The `ST` effect represents _local mutation_, i.e. mutation which does not
66
-- | "escape" into the surrounding computation.

0 commit comments

Comments
 (0)