diff --git a/CHANGELOG.md b/CHANGELOG.md index 50396e9..dc9625c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ Notable changes to this project are documented in this file. The format is based Breaking changes (😱!!!): +- Removed `Newtype` instance for `TacitString` + New features: Bugfixes: diff --git a/src/Data/TacitString.purs b/src/Data/TacitString.purs index c636d4c..1d22827 100644 --- a/src/Data/TacitString.purs +++ b/src/Data/TacitString.purs @@ -4,11 +4,9 @@ module Data.TacitString ) where import Prelude -import Data.Newtype (class Newtype) newtype TacitString = TacitString String -derive instance newtypeTacitString :: Newtype TacitString _ derive instance eqTacitString :: Eq TacitString derive instance ordTacitString :: Ord TacitString