packages feed

goldplate 0.2.2.0 → 0.2.2.1

raw patch · 3 files changed

+5/−2 lines, 3 filesdep ~Diffdep ~optparse-applicativePVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

Dependency ranges changed: Diff, optparse-applicative

API changes (from Hackage documentation)

+ Goldplate: Options :: [FilePath] -> Bool -> Bool -> Bool -> Bool -> Int -> Options
+ Goldplate: [oDiff] :: Options -> Bool
+ Goldplate: [oFix] :: Options -> Bool
+ Goldplate: [oJobs] :: Options -> Int
+ Goldplate: [oPaths] :: Options -> [FilePath]
+ Goldplate: [oPrettyDiff] :: Options -> Bool
+ Goldplate: [oVerbose] :: Options -> Bool

Files

CHANGELOG.md view
@@ -1,5 +1,8 @@ # CHANGELOG + -  0.2.2.1 (2024-09-30)+     *  Fix export of `Options`.+  -  0.2.2.0 (2024-09-30)      *  Expose `Options`, `defaultOptions` and `mainWith` from `Goldplate`         module so it's easy to call from Haskell test suites.
goldplate.cabal view
@@ -1,5 +1,5 @@ Name:          goldplate-Version:       0.2.2.0+Version:       0.2.2.1 Synopsis:      A lightweight golden test runner License:       Apache-2.0 License-file:  LICENSE
src/Goldplate.hs view
@@ -10,7 +10,7 @@ module Goldplate     ( main -    , Options+    , Options (..)     , defaultOptions     , mainWith