Skip to content

Commit

Permalink
Update to v0.14.0-rc2 (#61)
Browse files Browse the repository at this point in the history
* Update tag to v0.14.0-rc2

* Update dependencies to master

* Add kind signature to fix compiler warnings

* Update purescript-psa to v0.8.0
  • Loading branch information
JordanMartinez authored Oct 11, 2020
1 parent 3d3222f commit d65c49b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ node_js: stable
env:
- PATH=$HOME/purescript:$PATH
install:
- TAG=$(basename $(curl --location --silent --output /dev/null -w %{url_effective} https://github.com/purescript/purescript/releases/latest))
# - TAG=$(basename $(curl --location --silent --output /dev/null -w %{url_effective} https://github.com/purescript/purescript/releases/latest))
- TAG=v0.14.0-rc2
- curl --location --output $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
- chmod a+x $HOME/purescript
Expand Down
6 changes: 3 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
"package.json"
],
"dependencies": {
"purescript-prelude": "^4.0.0",
"purescript-newtype": "^3.0.0"
"purescript-prelude": "master",
"purescript-newtype": "master"
},
"devDependencies": {
"purescript-effect": "^2.0.0"
"purescript-effect": "master"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"devDependencies": {
"pulp": "^15.0.0",
"purescript-psa": "^0.6.0",
"purescript-psa": "^0.8.0",
"rimraf": "^2.6.2"
}
}
1 change: 1 addition & 0 deletions src/Data/Monoid/Alternate.purs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import Data.Ord (class Ord1)
-- | Alternate fx <> Alternate fy == Alternate (fx <|> fy)
-- | mempty :: Alternate _ == Alternate empty
-- | ```
newtype Alternate :: forall k. (k -> Type) -> k -> Type
newtype Alternate f a = Alternate (f a)

derive instance newtypeAlternate :: Newtype (Alternate f a) _
Expand Down

0 comments on commit d65c49b

Please sign in to comment.