Skip to content

Commit 5140095

Browse files
Update to v0.14.0-rc3 (#120)
* Update travis, dependencies and purescript-psa * Fix missing kind declaration error
1 parent 926fbd0 commit 5140095

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
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: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@
1717
"package.json"
1818
],
1919
"dependencies": {
20-
"purescript-bifunctors": "^4.0.0",
21-
"purescript-control": "^4.0.0",
22-
"purescript-maybe": "^4.0.0",
23-
"purescript-newtype": "^3.0.0",
24-
"purescript-orders": "^4.0.0",
25-
"purescript-prelude": "^4.0.0"
20+
"purescript-bifunctors": "master",
21+
"purescript-control": "master",
22+
"purescript-maybe": "master",
23+
"purescript-newtype": "master",
24+
"purescript-orders": "master",
25+
"purescript-prelude": "master"
2626
},
2727
"devDependencies": {
28-
"purescript-assert": "^4.0.0",
29-
"purescript-console": "^4.0.0",
30-
"purescript-integers": "^4.0.0",
31-
"purescript-math": "^2.1.1",
32-
"purescript-unsafe-coerce": "^4.0.0"
28+
"purescript-assert": "master",
29+
"purescript-console": "master",
30+
"purescript-integers": "master",
31+
"purescript-math": "master",
32+
"purescript-unsafe-coerce": "master"
3333
}
3434
}

package.json

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

src/Data/Semigroup/Foldable.purs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ instance foldableMultiplicative :: Foldable1 Multiplicative where
5555
foldMap1 f (Multiplicative x) = f x
5656
fold1 = fold1Default
5757

58+
newtype Act :: forall k. (k -> Type) -> k -> Type
5859
newtype Act f a = Act (f a)
5960

6061
getAct :: forall f a. Act f a -> f a

0 commit comments

Comments
 (0)