packages feed

stackage-build-plan 0.1.0.0 → 0.1.1.0

raw patch · 3 files changed

+14/−1 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Stackage.BuildPlan: setFullDeps :: Bool -> Settings -> Settings

Files

ChangeLog.md view
@@ -1,3 +1,7 @@+# 0.1.1.0++* `setFullDeps`+ # 0.1.0.0  * Initial release
Stackage/BuildPlan.hs view
@@ -10,6 +10,7 @@     , defaultSettings     , setMirror     , setSnapshot+    , setFullDeps     , ShellCommands     , setShellCommands     , abstractCommands@@ -241,6 +242,14 @@ -- Since 0.1.0.0 setSnapshot :: SnapshotSpec -> Settings -> Settings setSnapshot x s = s { _snapshot = x }++-- | Should we trace dependencies of test suites and benchmarks?+--+-- Default: False+--+-- Since 0.1.1.0+setFullDeps :: Bool -> Settings -> Settings+setFullDeps x s = s { _fullDeps = x }  -- | Set the mirror prefix for tarball downloads (shell script only). --
stackage-build-plan.cabal view
@@ -1,5 +1,5 @@ name:                stackage-build-plan-version:             0.1.0.0+version:             0.1.1.0 synopsis:            Calculate and print (in different formats) Stackage build plans description:         For more information, see <https://www.stackage.org/package/stackage-build-plan> homepage:            https://github.com/fpco/stackage-build-plan