packages feed

haskell-dap 0.0.12.0 → 0.0.13.0

raw patch · 3 files changed

+9/−3 lines, 3 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

+ Haskell.DAP: [forceInspectLaunchRequestArguments] :: LaunchRequestArguments -> Maybe Bool
- Haskell.DAP: LaunchRequestArguments :: Maybe Bool -> String -> String -> String -> String -> String -> String -> String -> String -> String -> Bool -> Maybe String -> Map String String -> Maybe String -> Maybe String -> Maybe String -> LaunchRequestArguments
+ Haskell.DAP: LaunchRequestArguments :: Maybe Bool -> String -> String -> String -> String -> String -> String -> String -> String -> String -> Bool -> Maybe String -> Map String String -> Maybe String -> Maybe String -> Maybe String -> Maybe Bool -> LaunchRequestArguments

Files

Changelog.md view
@@ -1,4 +1,9 @@ +20190324 haskell-dap-0.0.13.0++  * [ADD] Add force inspect attribute to launch setting.++ 20190303 haskell-dap-0.0.12.0    * [FIX] move GHCi.DAP module to Haskell.DAP module.
haskell-dap.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 915a08146154923fec2684d6e8bd501f8a762c0486c3e7734de2bc79406cd8bf+-- hash: e1646d532d6d7854f52d8e8f6c2454c4e6402a856e7ffd1371398f82de818c14  name:           haskell-dap-version:        0.0.12.0+version:        0.0.13.0 synopsis:       Haskell implementation of the DAP interface data. description:    Please see README.md category:       Development
src/Haskell/DAP.hs view
@@ -673,9 +673,10 @@   , stopOnEntryLaunchRequestArguments  :: Bool       -- ^Phoityne specific argument. Stop at the debugged function entry point.   , mainArgsLaunchRequestArguments     :: Maybe String         -- ^Phoityne specific argument. required. Arguments of main function.   , ghciEnvLaunchRequestArguments      :: M.Map String String  -- ^Phoityne specific argument. required. Additional Environments while debugging.-  , ghciInitialPromptLaunchRequestArguments  :: Maybe String   -- ^Phoityne specific argument. The ghci initial prompt.+  , ghciInitialPromptLaunchRequestArguments :: Maybe String    -- ^Phoityne specific argument. The ghci initial prompt.   , startupFuncLaunchRequestArguments  :: Maybe String         -- ^Phoityne specific argument. The debug entry function.   , startupArgsLaunchRequestArguments  :: Maybe String         -- ^Phoityne specific argument. Arguments of the debug entry function.+  , forceInspectLaunchRequestArguments :: Maybe Bool           -- ^Phoityne specific argument. Inspect variable force.   } deriving (Show, Read, Eq)