Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Notable changes to this project are documented in this file. The format is based

Breaking changes:
- Update project and deps to PureScript v0.15.0 (#36 by @JordanMartinez)
- Drop deprecated `MonadZero` instance (#35 by @JordanMartinez)

New features:

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"scripts": {
"clean": "rimraf output && rimraf .pulp-cache",
"build": "pulp build -- --censor-lib --strict --censor-codes='UserDefinedWarning'",
"build": "pulp build -- --censor-lib --strict",
"test": "pulp test"
},
"devDependencies": {
Expand Down
4 changes: 1 addition & 3 deletions src/Data/Functor/App.purs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Control.Apply (lift2)
import Control.Comonad (class Comonad)
import Control.Extend (class Extend)
import Control.Lazy (class Lazy)
import Control.MonadPlus (class MonadZero, class MonadPlus)
import Control.MonadPlus (class MonadPlus)
import Control.Plus (class Plus)
import Data.Eq (class Eq1)
import Data.Newtype (class Newtype)
Expand Down Expand Up @@ -42,8 +42,6 @@ instance semigroupApp :: (Apply f, Semigroup a) => Semigroup (App f a) where
instance monoidApp :: (Applicative f, Monoid a) => Monoid (App f a) where
mempty = App (pure mempty)

instance monadZeroApp :: MonadZero f => MonadZero (App f)

derive newtype instance functorApp :: Functor f => Functor (App f)
derive newtype instance applyApp :: Apply f => Apply (App f)
derive newtype instance applicativeApp :: Applicative f => Applicative (App f)
Expand Down