From 6e796cda09b1c7be1999ffde7a8d1aa3c4cb5b1e Mon Sep 17 00:00:00 2001 From: Cyril Sobierajewicz Date: Sat, 18 Jul 2020 18:11:22 +0200 Subject: [PATCH 1/2] Fix `HiddenConstructors` warnings --- src/Data/TacitString.purs | 2 -- 1 file changed, 2 deletions(-) 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 From 8d2a901a94fac59793fb720743bb8a4f11903d2f Mon Sep 17 00:00:00 2001 From: Cyril Sobierajewicz Date: Thu, 19 Nov 2020 23:00:33 +0100 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) 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: