packages feed

dap 0.3.2.0 → 0.4.0.0

raw patch · 2 files changed

+5/−5 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

- DAP.Types: [exceptionInfoBreakMode] :: ExceptionInfoResponse -> ExceptionBreakMode
- DAP.Types: [exceptionInfoDescriptionId] :: ExceptionInfoResponse -> Maybe Text
- DAP.Types: [exceptionInfoReponseDetails] :: ExceptionInfoResponse -> Maybe ExceptionDetails
- DAP.Types: [exceptionInfoResponseId] :: ExceptionInfoResponse -> Text
+ DAP.Types: [exceptionInfoResponseBreakMode] :: ExceptionInfoResponse -> ExceptionBreakMode
+ DAP.Types: [exceptionInfoResponseDescription] :: ExceptionInfoResponse -> Maybe Text
+ DAP.Types: [exceptionInfoResponseDetails] :: ExceptionInfoResponse -> Maybe ExceptionDetails
+ DAP.Types: [exceptionInfoResponseExceptionId] :: ExceptionInfoResponse -> Text

Files

dap.cabal view
@@ -1,5 +1,5 @@ name:               dap-version:            0.3.2.0+version:            0.4.0.0 description:        A library for the Debug Adaptor Protocol (DAP) synopsis:           A debug adaptor protocol library bug-reports:        https://github.com/haskell-debugger/dap/issues
src/DAP/Types.hs view
@@ -2009,19 +2009,19 @@ ---------------------------------------------------------------------------- data ExceptionInfoResponse   = ExceptionInfoResponse-  { exceptionInfoResponseId :: Text+  { exceptionInfoResponseExceptionId :: Text     -- ^     -- ID of the exception that was thrown.     ---  , exceptionInfoDescriptionId :: Maybe Text+  , exceptionInfoResponseDescription :: Maybe Text     -- ^     -- Descriptive text for the exception.     ---  , exceptionInfoBreakMode :: ExceptionBreakMode+  , exceptionInfoResponseBreakMode :: ExceptionBreakMode     -- ^     -- Mode that caused the exception notification to be raised.     ---  , exceptionInfoReponseDetails :: Maybe ExceptionDetails+  , exceptionInfoResponseDetails :: Maybe ExceptionDetails     -- ^     -- Detailed information about the exception.     --