Skip to content

Commit 05e4445

Browse files
Drop MonadZero file, class, and instance (#76)
* Drop MonadZero file, class, and instance * Drop UserDefinedWarning censoring * Add changelog entry * Update package.json Co-authored-by: Thomas Honeyman <[email protected]> Co-authored-by: Thomas Honeyman <[email protected]>
1 parent e49aee0 commit 05e4445

File tree

4 files changed

+2
-51
lines changed

4 files changed

+2
-51
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Notable changes to this project are documented in this file. The format is based
66

77
Breaking changes:
88
- Migrate FFI to ES modules (#78 by @kl0tl and @JordanMartinez)
9+
- Drop deprecated `MonadZero` instance (#76 by @JordanMartinez)
910

1011
New features:
1112

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"private": true,
33
"scripts": {
44
"clean": "rimraf output && rimraf .pulp-cache",
5-
"build": "pulp build -- --censor-lib --strict --censor-codes='UserDefinedWarning'",
5+
"build": "pulp build -- --censor-lib --strict",
66
"test": "pulp test"
77
},
88
"devDependencies": {

src/Control/MonadPlus.purs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ module Control.MonadPlus
66
, module Control.Apply
77
, module Control.Bind
88
, module Control.Monad
9-
, module Control.MonadZero
109
, module Control.Plus
1110
, module Data.Functor
1211
) where
@@ -17,7 +16,6 @@ import Control.Applicative (class Applicative, pure, liftA1, unless, when)
1716
import Control.Apply (class Apply, apply, (*>), (<*), (<*>))
1817
import Control.Bind (class Bind, bind, ifM, join, (<=<), (=<<), (>=>), (>>=))
1918
import Control.Monad (class Monad, ap, liftM1)
20-
import Control.MonadZero (class MonadZero)
2119
import Control.Plus (class Plus, empty)
2220

2321
import Data.Functor (class Functor, map, void, ($>), (<#>), (<$), (<$>))

src/Control/MonadZero.purs

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)