Skip to content

Commit 982fbbd

Browse files
authored
Update to v0.14.0-rc3 (#133)
1 parent 48034f0 commit 982fbbd

7 files changed

Lines changed: 23 additions & 19 deletions

File tree

.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: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,23 @@
2323
"package.json"
2424
],
2525
"dependencies": {
26-
"purescript-control": "^4.0.0",
27-
"purescript-distributive": "^4.0.0",
28-
"purescript-effect": "^2.0.0",
29-
"purescript-exceptions": "^4.0.0",
30-
"purescript-either": "^4.0.0",
31-
"purescript-foldable-traversable": "^4.0.0",
32-
"purescript-identity": "^4.0.0",
33-
"purescript-lazy": "^4.0.0",
34-
"purescript-maybe": "^4.0.0",
35-
"purescript-newtype": "^3.0.0",
36-
"purescript-prelude": "^4.0.0",
37-
"purescript-tailrec": "^4.0.0",
38-
"purescript-tuples": "^5.0.0",
39-
"purescript-unfoldable": "^4.0.0"
26+
"purescript-control": "master",
27+
"purescript-distributive": "master",
28+
"purescript-effect": "master",
29+
"purescript-exceptions": "master",
30+
"purescript-either": "master",
31+
"purescript-foldable-traversable": "master",
32+
"purescript-identity": "master",
33+
"purescript-lazy": "master",
34+
"purescript-maybe": "master",
35+
"purescript-newtype": "master",
36+
"purescript-prelude": "master",
37+
"purescript-tailrec": "master",
38+
"purescript-tuples": "master",
39+
"purescript-unfoldable": "master"
4040
},
4141
"devDependencies": {
42-
"purescript-arrays": "^5.0.0",
43-
"purescript-console": "^4.0.0"
42+
"purescript-arrays": "master",
43+
"purescript-console": "master"
4444
}
4545
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"devDependencies": {
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/Control/Comonad/Env/Trans.purs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import Data.Newtype (class Newtype)
1818
-- | type `e`.
1919
-- |
2020
-- | The `ComonadEnv` type class describes the operations supported by this comonad.
21+
newtype EnvT :: forall k. Type -> (k -> Type) -> k -> Type
2122
newtype EnvT e w a = EnvT (Tuple e (w a))
2223

2324
-- | Unwrap a value in the `EnvT` comonad.

src/Control/Monad/Cont/Trans.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import Effect.Class (class MonadEffect, liftEffect)
1919
-- | The CPS monad transformer.
2020
-- |
2121
-- | This monad transformer extends the base monad with the operation `callCC`.
22+
newtype ContT :: forall k. k -> (k -> Type) -> Type -> Type
2223
newtype ContT r m a = ContT ((a -> m r) -> m r)
2324

2425
-- | Run a computation in the `ContT` monad, by providing a continuation.
@@ -74,4 +75,3 @@ instance semigroupContT :: (Apply m, Semigroup a) => Semigroup (ContT r m a) whe
7475

7576
instance monoidContT :: (Applicative m, Monoid a) => Monoid (ContT r m a) where
7677
mempty = pure mempty
77-

src/Control/Monad/Identity/Trans.purs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ import Effect.Class (class MonadEffect)
2626
-- | This monad acts like a placeholder for functions that take a monad
2727
-- | transformer as an argument, similar to `identity` for functions and
2828
-- | `Identity` for monads.
29+
newtype IdentityT :: forall k. (k -> Type) -> k -> Type
2930
newtype IdentityT m a = IdentityT (m a)
3031

3132
-- | Run a computation in the `IdentityT` monad.

src/Control/Monad/Reader/Trans.purs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ import Effect.Class (class MonadEffect, liftEffect)
3131
-- | type `r`.
3232
-- |
3333
-- | The `MonadReader` type class describes the operations supported by this monad.
34+
newtype ReaderT :: forall k. Type -> (k -> Type) -> k -> Type
3435
newtype ReaderT r m a = ReaderT (r -> m a)
3536

3637
-- | Run a computation in the `ReaderT` monad.

0 commit comments

Comments
 (0)