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
5 changes: 2 additions & 3 deletions generator/lsp.json
Original file line number Diff line number Diff line change
Expand Up @@ -15207,9 +15207,8 @@
}
],
"supportsCustomValues": true,
"documentation": "Predefined Language kinds\n@since 3.18.0\n@proposed",
"since": "3.18.0",
"proposed": true
"documentation": "Predefined Language kinds\n@since 3.18.0",
"since": "3.18.0"
},
{
"name": "InlineCompletionTriggerKind",
Expand Down
4 changes: 1 addition & 3 deletions packages/python/lsprotocol/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,11 +500,9 @@ class MarkupKind(str, enum.Enum):

class LanguageKind(str, enum.Enum):
"""Predefined Language kinds
@since 3.18.0
@proposed"""
@since 3.18.0"""

# Since: 3.18.0
# Proposed
Abap = "abap"
WindowsBat = "bat"
BibTeX = "bibtex"
Expand Down
2 changes: 1 addition & 1 deletion packages/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
[project]
name = "lsprotocol"
description = 'Python types for Language Server Protocol.'
version = "2024.0.0b1"
version = "2024.0.0b2"
authors = [
{ name = "Microsoft Corporation", email = "[email protected]" },
]
Expand Down
6 changes: 3 additions & 3 deletions packages/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#
# pip-compile --generate-hashes ./packages/python/requirements.in
#
attrs==24.2.0 \
--hash=sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346 \
--hash=sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2
attrs==24.3.0 \
--hash=sha256:8f5c07333d543103541ba7be0e2ce16eeee8130cb0b3f9238ab904ce1e85baff \
--hash=sha256:ac96cd038792094f438ad1f6ff80837353805ac950cd2aa0e0625ef19850c308
# via
# -r ./packages/python/requirements.in
# cattrs
Expand Down
2 changes: 1 addition & 1 deletion packages/rust/lsprotocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lsprotocol"
version = "1.0.0-alpha.2"
version = "1.0.0-alpha.3"
edition = "2021"
description = "Rust types for Language Server Protocol generated from LSP specification."
authors = ["Microsoft Corporation <[email protected]>"]
Expand Down
2 changes: 0 additions & 2 deletions packages/rust/lsprotocol/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1432,8 +1432,6 @@ pub enum MarkupKind {

/// Predefined Language kinds
/// @since 3.18.0
/// @proposed
#[cfg(feature = "proposed")]
#[derive(Serialize, Deserialize, PartialEq, Debug, Eq, Clone)]
pub enum LanguageKind {
#[serde(rename = "abap")]
Expand Down
262 changes: 146 additions & 116 deletions requirements.txt

Large diffs are not rendered by default.

Loading