diff --git a/CHANGELOG.md b/CHANGELOG.md index b6e07276..4f2830de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ### v0.24.0 (TBD) +* Implemented DAP version 1.69.0 + Fixed issues: Breaking API changes: diff --git a/README.md b/README.md index c1d8186b..00daa354 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ The Maven Repositories, p2 Update Sites, and the Snapshots contain _signed jars_ ### Supported DAP Versions - * LSP4J 0.24.* _(Next release)_ → DAP 1.65.0 + * LSP4J 0.24.* _(Next release)_ → DAP 1.69.0 * LSP4J 0.23.* → DAP 1.65.0 * LSP4J 0.22.* → DAP 1.60.0 * LSP4J 0.21.* → DAP 1.60.0 diff --git a/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/DebugProtocol.xtend b/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/DebugProtocol.xtend index 47321147..d2bd527d 100644 --- a/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/DebugProtocol.xtend +++ b/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/DebugProtocol.xtend @@ -28,7 +28,7 @@ class DebugProtocol { /** * Version of Debug Protocol */ - public static final String SCHEMA_VERSION = "1.65.0"; + public static final String SCHEMA_VERSION = "1.69.0"; /** * Refer to the Debug Adapter Protocol's diff --git a/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/services/IDebugProtocolClient.java b/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/services/IDebugProtocolClient.java index 404050ac..06b17817 100644 --- a/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/services/IDebugProtocolClient.java +++ b/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/services/IDebugProtocolClient.java @@ -47,7 +47,7 @@ public interface IDebugProtocolClient { /** * Version of Debug Protocol */ - String SCHEMA_VERSION = "1.65.0"; + String SCHEMA_VERSION = "1.69.0"; /** * This event indicates that the debug adapter is ready to accept configuration diff --git a/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/services/IDebugProtocolServer.java b/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/services/IDebugProtocolServer.java index 657e46c0..a0e73353 100644 --- a/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/services/IDebugProtocolServer.java +++ b/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/services/IDebugProtocolServer.java @@ -93,7 +93,7 @@ public interface IDebugProtocolServer { /** * Version of Debug Protocol */ - String SCHEMA_VERSION = "1.65.0"; + String SCHEMA_VERSION = "1.69.0"; /** * The 'cancel' request is used by the client in two situations: