Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

### Next Version number TBD (release date TBD)

* Finalized support for LSP 3.18.0

Fixed issues: <https://github.com/eclipse-lsp4j/lsp4j/milestone/37?closed=1> (Update with corresponding milestone number)

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 @@ -35,7 +35,7 @@ The Maven Repositories, p2 Update Sites, and the Snapshots contain _signed jars_

### Supported LSP Versions

* LSP4J _(Next release)_ &rarr; LSP 3.18.0 (specification is not finalized yet) plus [SymbolTag proposal](https://github.com/microsoft/language-server-protocol/pull/2003)
* LSP4J _(Next release)_ &rarr; LSP 3.18.0 plus [SymbolTag proposal](https://github.com/microsoft/language-server-protocol/pull/2003)
* LSP4J 1.0.&ast; &rarr; LSP 3.18.0 (specification is not finalized yet) plus [SymbolTag proposal](https://github.com/microsoft/language-server-protocol/pull/2003)
* LSP4J 0.24.&ast; &rarr; LSP 3.17.0
* LSP4J 0.23.&ast; &rarr; LSP 3.17.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,11 @@
******************************************************************************/
package org.eclipse.lsp4j;

import org.eclipse.lsp4j.jsonrpc.ProtocolDraft;
import org.eclipse.lsp4j.jsonrpc.ProtocolSince;

/**
* Defines how values from a set of defaults and an individual item will be merged.
*/
@ProtocolDraft
@ProtocolSince("3.18.0")
public enum ApplyKind {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,11 @@
******************************************************************************/
package org.eclipse.lsp4j;

import org.eclipse.lsp4j.jsonrpc.ProtocolDraft;
import org.eclipse.lsp4j.jsonrpc.ProtocolSince;

/**
* Code action tags are extra annotations that tweak the behavior of a code action.
*/
@ProtocolDraft
@ProtocolSince("3.18.0")
public enum CodeActionTag {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,11 @@
******************************************************************************/
package org.eclipse.lsp4j;

import org.eclipse.lsp4j.jsonrpc.ProtocolDraft;
import org.eclipse.lsp4j.jsonrpc.ProtocolSince;

/**
* Describes how an inline completion request was triggered.
*/
@ProtocolDraft
@ProtocolSince("3.18.0")
public enum InlineCompletionTriggerKind {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
******************************************************************************/
package org.eclipse.lsp4j;

import org.eclipse.lsp4j.jsonrpc.ProtocolDraft;
import org.eclipse.lsp4j.jsonrpc.ProtocolSince;

public enum MessageType {
Expand Down Expand Up @@ -39,7 +38,6 @@ public enum MessageType {
/**
* A debug message.
*/
@ProtocolDraft
@ProtocolSince("3.18.0")
Debug(5);

Expand Down
Loading
Loading