From 7ca6fa3c5d8dda1dcafc5f43e8fde25cc69e7543 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Sat, 24 Apr 2021 19:28:03 -0700 Subject: [PATCH 1/2] Fix warnings revealed by v0.14.1 PS release --- src/Control/Monad/ST/Internal.purs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Control/Monad/ST/Internal.purs b/src/Control/Monad/ST/Internal.purs index 148de37..a467276 100644 --- a/src/Control/Monad/ST/Internal.purs +++ b/src/Control/Monad/ST/Internal.purs @@ -62,7 +62,7 @@ instance monadRecST :: MonadRec (ST r) where Loop a' -> do e <- f a' void (write e r) - Done b -> pure unit + Done _ -> pure unit fromDone <$> read r where fromDone :: forall a b. Step a b -> b From f5b43cd4ab41e48a5624a07a4763e6f797a4345e Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Sat, 24 Apr 2021 19:29:07 -0700 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cc8f48..b736473 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ New features: Bugfixes: Other improvements: +- Fix warnings revealed by v0.14.1 PS release (#43 by @JordanMartinez) ## [v5.0.0](https://github.com/purescript/purescript-st/releases/tag/v5.0.0) - 2021-02-26