Skip to content

Commit

Permalink
Update DAP version to 1.69.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jansorg committed Jan 8, 2025
1 parent a31202b commit 4eac9b4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

### v0.24.0 (TBD)

* Implemented DAP version 1.69.0

Fixed issues: <https://github.com/eclipse-lsp4j/lsp4j/milestone/35?closed=1>

Breaking API changes:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ The Maven Repositories, p2 Update Sites, and the Snapshots contain _signed jars_

### Supported DAP Versions

* LSP4J 0.24.&ast; _(Next release)_ &rarr; DAP 1.65.0
* LSP4J 0.24.&ast; _(Next release)_ &rarr; DAP 1.69.0
* LSP4J 0.23.&ast; &rarr; DAP 1.65.0
* LSP4J 0.22.&ast; &rarr; DAP 1.60.0
* LSP4J 0.21.&ast; &rarr; DAP 1.60.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 4eac9b4

Please sign in to comment.