Skip to content
This repository was archived by the owner on Oct 4, 2020. It is now read-only.

Commit 2abcc55

Browse files
authored
Merge pull request #14 from purescript/bump
Prepare for 2.0 release
2 parents 74acc8f + 4f55713 commit 2abcc55

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
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-prelude": "^1.0.0"
20+
"purescript-prelude": "^2.1.0"
2121
}
2222
}

src/Control/Monad/Eff.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"use strict";
22

3-
// module Control.Monad.Eff
4-
53
exports.pureE = function (a) {
64
return function () {
75
return a;

src/Control/Monad/Eff/Unsafe.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"use strict";
22

3-
// module Control.Monad.Eff.Unsafe
4-
5-
exports.unsafeInterleaveEff = function (f) {
3+
exports.unsafeCoerceEff = function (f) {
64
return f;
75
};

src/Control/Monad/Eff/Unsafe.purs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Control.Semigroupoid ((<<<))
77
-- | another context.
88
-- |
99
-- | *Note*: use of this function can result in arbitrary side-effects.
10-
foreign import unsafeInterleaveEff
10+
foreign import unsafeCoerceEff
1111
:: forall eff1 eff2 a
1212
. Eff eff1 a
1313
-> Eff eff2 a
@@ -16,4 +16,4 @@ foreign import unsafeInterleaveEff
1616
-- |
1717
-- | *Note*: use of this function can result in arbitrary side-effects.
1818
unsafePerformEff :: forall eff a. Eff eff a -> a
19-
unsafePerformEff = runPure <<< unsafeInterleaveEff
19+
unsafePerformEff = runPure <<< unsafeCoerceEff

0 commit comments

Comments
 (0)