From 9ad2ac4cf0abed29e4c23373de6349f73bc06433 Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Thu, 4 Jan 2024 08:03:35 +0100 Subject: [PATCH] Bump to 0.4.8 and changelog entry --- STMonadTrans.cabal | 19 +++++++++---------- changelog.md | 11 +++++++++-- 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/STMonadTrans.cabal b/STMonadTrans.cabal index 3ce5e59..d93f4b8 100644 --- a/STMonadTrans.cabal +++ b/STMonadTrans.cabal @@ -1,16 +1,15 @@ cabal-version: 1.18 -name: STMonadTrans -version: 0.4.7 -x-revision: 1 -license: BSD3 -license-file: LICENSE -author: Josef Svenningsson -maintainer: josef.svenningsson@gmail.com, Andreas Abel +name: STMonadTrans +version: 0.4.8 +license: BSD3 +license-file: LICENSE +author: Josef Svenningsson +maintainer: Andreas Abel, josef.svenningsson@gmail.com homepage: https://github.com/josefs/STMonadTrans bug-reports: https://github.com/josefs/STMonadTrans/issues -category: Monads -build-type: Simple -synopsis: A monad transformer version of the ST monad +category: Monads +build-type: Simple +synopsis: A monad transformer version of the ST monad description: A monad transformer version of the ST monad. . diff --git a/changelog.md b/changelog.md index 75a1985..ff44d5b 100644 --- a/changelog.md +++ b/changelog.md @@ -1,11 +1,18 @@ -0.4.7 +0.4.8 -- 2023-01-04 + + * Added `Alternative` instance for `STT`, by William Rusnack + (PR [#33](https://github.com/josefs/STMonadTrans/pull/33)). + * Drop support for GHC 7. + * Tested with GHC 8.0.2 - 9.8.1. + +0.4.7 -- 2023-05-18 * Added `MonadIO` for `SST` (issue [#29](https://github.com/josefs/STMonadTrans/issues/29)). * Make `transformers` dependency explicit. * Bump `cabal-version` of `STMonadTrans.cabal` to 1.18. * Tested with GHC 7.6.3 - 9.6.1. -0.4.6 +0.4.6 -- 2021-08-21 * Warning-free for all supported GHC versions (7.6 -- 9.2). * Drop `splitBase` cabal flag (`base >= 4` is already assumed).