From 137909e79a03f7b3068f0bbbda9096926ba42826 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Wed, 7 Oct 2020 19:55:33 -0700 Subject: [PATCH 1/4] Update tag to v0.14.0-rc2 --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8daa38c..a7700cb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 From e81968ad4e94686a584042514ee868aeb300d3d6 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Wed, 7 Oct 2020 19:55:38 -0700 Subject: [PATCH 2/4] Update dependencies to master --- bower.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bower.json b/bower.json index 3810192..3f66529 100644 --- a/bower.json +++ b/bower.json @@ -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" } } From 05e711dab3a6d3d9023cec92f44b37e0d4064091 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Sun, 11 Oct 2020 10:48:40 -0700 Subject: [PATCH 3/4] Add kind signature to fix compiler warnings --- src/Data/Monoid/Alternate.purs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Data/Monoid/Alternate.purs b/src/Data/Monoid/Alternate.purs index 2567d43..9a16f1e 100644 --- a/src/Data/Monoid/Alternate.purs +++ b/src/Data/Monoid/Alternate.purs @@ -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) _ From 82b94be3b23f4fd109e4866dc4391de83557bc9a Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Sun, 11 Oct 2020 10:48:49 -0700 Subject: [PATCH 4/4] Update purescript-psa to v0.8.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d408361..1fac874 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ }, "devDependencies": { "pulp": "^15.0.0", - "purescript-psa": "^0.6.0", + "purescript-psa": "^0.8.0", "rimraf": "^2.6.2" } }