Skip to content

Commit ac74e5b

Browse files
jansorgjonahgraham
authored andcommitted
Update DAP version to 1.69.0
1 parent 6e77618 commit ac74e5b

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
### v0.24.0 (TBD)
44

5+
* Implemented DAP version 1.69.0
6+
57
Fixed issues: <https://github.com/eclipse-lsp4j/lsp4j/milestone/35?closed=1>
68

79
Breaking API changes:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The Maven Repositories, p2 Update Sites, and the Snapshots contain _signed jars_
6161

6262
### Supported DAP Versions
6363

64-
* LSP4J 0.24.&ast; _(Next release)_ &rarr; DAP 1.65.0
64+
* LSP4J 0.24.&ast; _(Next release)_ &rarr; DAP 1.69.0
6565
* LSP4J 0.23.&ast; &rarr; DAP 1.65.0
6666
* LSP4J 0.22.&ast; &rarr; DAP 1.60.0
6767
* LSP4J 0.21.&ast; &rarr; DAP 1.60.0

org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/DebugProtocol.xtend

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class DebugProtocol {
2828
/**
2929
* Version of Debug Protocol
3030
*/
31-
public static final String SCHEMA_VERSION = "1.65.0";
31+
public static final String SCHEMA_VERSION = "1.69.0";
3232

3333
/**
3434
* Refer to the Debug Adapter Protocol's

org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/services/IDebugProtocolClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public interface IDebugProtocolClient {
4747
/**
4848
* Version of Debug Protocol
4949
*/
50-
String SCHEMA_VERSION = "1.65.0";
50+
String SCHEMA_VERSION = "1.69.0";
5151

5252
/**
5353
* This event indicates that the debug adapter is ready to accept configuration

org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/services/IDebugProtocolServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public interface IDebugProtocolServer {
9393
/**
9494
* Version of Debug Protocol
9595
*/
96-
String SCHEMA_VERSION = "1.65.0";
96+
String SCHEMA_VERSION = "1.69.0";
9797

9898
/**
9999
* The 'cancel' request is used by the client in two situations:

0 commit comments

Comments
 (0)