Skip to content

Commit 2950420

Browse files
authored
Merge pull request #29 from JordanMartinez/updateTo14
Update to v0.14.0-rc3
2 parents d69806e + ee980f1 commit 2950420

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ node_js: stable
55
env:
66
- PATH=$HOME/purescript:$PATH
77
install:
8-
- TAG=$(basename $(curl --location --silent --output /dev/null -w %{url_effective} https://github.com/purescript/purescript/releases/latest))
8+
# - TAG=$(basename $(curl --location --silent --output /dev/null -w %{url_effective} https://github.com/purescript/purescript/releases/latest))
9+
- TAG=v0.14.0-rc3
910
- curl --location --output $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
1011
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
1112
- chmod a+x $HOME/purescript

bower.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
"package.json"
2121
],
2222
"dependencies": {
23-
"purescript-control": "^4.0.0",
24-
"purescript-foldable-traversable": "^4.0.0",
25-
"purescript-invariant": "^4.0.0",
26-
"purescript-prelude": "^4.0.0"
23+
"purescript-control": "master",
24+
"purescript-foldable-traversable": "master",
25+
"purescript-invariant": "master",
26+
"purescript-prelude": "master"
2727
}
2828
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"devDependencies": {
88
"eslint": "^4.19.1",
99
"pulp": "^15.0.0",
10-
"purescript-psa": "^0.6.0",
10+
"purescript-psa": "^0.8.0",
1111
"rimraf": "^2.6.2"
1212
}
1313
}

src/Data/Lazy.purs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ import Data.TraversableWithIndex (class TraversableWithIndex)
2929
-- | `Lazy` values can be evaluated by using the `force` function.
3030
foreign import data Lazy :: Type -> Type
3131

32+
type role Lazy representational
33+
3234
-- | Defer a computation, creating a `Lazy` value.
3335
foreign import defer :: forall a. (Unit -> a) -> Lazy a
3436

0 commit comments

Comments
 (0)