packages feed

hspec-effectful 1.1.1 → 1.1.2

raw patch · 3 files changed

+8/−3 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to the [Haskell Package Versioning Policy](https://pvp.haskell.org/). +## [1.1.2] - 2026-08-07++### Fixed++- Pass command-line arguments to hspec.+ ## [1.1.1] - 2026-07-26  ### Added
hspec-effectful.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: hspec-effectful-version: 1.1.1+version: 1.1.2 synopsis: Effectful driver for Hspec category: Test description:
src/Effectful/Hspec.hs view
@@ -132,7 +132,6 @@ import Data.Typeable (typeOf) import Effectful import Effectful.Dispatch.Static-import Effectful.Environment (runEnvironment, withArgs) import Effectful.Exception (Exception, throwIO, try) import Effectful.HUnit (Assertion, HUnit, runHUnit, (@?=)) import Effectful.HUnit qualified as HUnit@@ -169,7 +168,7 @@                     }             . inject             $ action-    runEnvironment . withArgs [] . liftIO $ Hspec.hspecWith config spec+    liftIO $ Hspec.hspecWith config spec     pure a  runHspecWith :: (IOE :> es) => Config -> Eff (Hspec ': es) a -> Eff es a