Skip to content

Commit 2611596

Browse files
paluhhdgarrood
andauthored
Update to v0.14.0-rc3 (#15)
* Update TAG to v0.14.0-rc3; dependencies to master; psa to v0.8.0 * Add kind signature for Const * Avoid unicode syntax Co-authored-by: Harry Garrood <harry@garrood.me>
1 parent 06d5f0d commit 2611596

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
"package.json"
2222
],
2323
"dependencies": {
24-
"purescript-contravariant": "^4.0.0",
25-
"purescript-foldable-traversable": "^4.0.0",
26-
"purescript-invariant": "^4.0.0",
27-
"purescript-newtype": "^3.0.0",
28-
"purescript-prelude": "^4.0.0"
24+
"purescript-contravariant": "master",
25+
"purescript-foldable-traversable": "master",
26+
"purescript-invariant": "master",
27+
"purescript-newtype": "master",
28+
"purescript-prelude": "master"
2929
}
3030
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"devDependencies": {
88
"pulp": "^15.0.0",
9-
"purescript-psa": "^0.6.0",
9+
"purescript-psa": "^0.8.0",
1010
"rimraf": "^2.6.2"
1111
}
1212
}

src/Data/Const.purs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import Data.TraversableWithIndex (class TraversableWithIndex)
2323
-- | `Const` has some useful instances. For example, the `Applicative`
2424
-- | instance allows us to collect results using a `Monoid` while
2525
-- | ignoring return values.
26+
newtype Const :: forall k. Type -> k -> Type
2627
newtype Const a b = Const a
2728

2829
derive instance newtypeConst :: Newtype (Const a b) _

0 commit comments

Comments
 (0)