diff --git a/Changelog.md b/Changelog.md
--- a/Changelog.md
+++ b/Changelog.md
@@ -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.
diff --git a/haskell-dap.cabal b/haskell-dap.cabal
--- a/haskell-dap.cabal
+++ b/haskell-dap.cabal
@@ -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
diff --git a/src/Haskell/DAP.hs b/src/Haskell/DAP.hs
--- a/src/Haskell/DAP.hs
+++ b/src/Haskell/DAP.hs
@@ -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)
 
 
