Skip to content

Commit b483513

Browse files
committed
Breaking change ApplyKind
1 parent 4dd0484 commit b483513

File tree

7 files changed

+154
-129
lines changed

7 files changed

+154
-129
lines changed

generator/lsp.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15207,9 +15207,8 @@
1520715207
}
1520815208
],
1520915209
"supportsCustomValues": true,
15210-
"documentation": "Predefined Language kinds\n@since 3.18.0\n@proposed",
15211-
"since": "3.18.0",
15212-
"proposed": true
15210+
"documentation": "Predefined Language kinds\n@since 3.18.0",
15211+
"since": "3.18.0"
1521315212
},
1521415213
{
1521515214
"name": "InlineCompletionTriggerKind",

packages/python/lsprotocol/types.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -500,11 +500,9 @@ class MarkupKind(str, enum.Enum):
500500

501501
class LanguageKind(str, enum.Enum):
502502
"""Predefined Language kinds
503-
@since 3.18.0
504-
@proposed"""
503+
@since 3.18.0"""
505504

506505
# Since: 3.18.0
507-
# Proposed
508506
Abap = "abap"
509507
WindowsBat = "bat"
510508
BibTeX = "bibtex"

packages/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
55
[project]
66
name = "lsprotocol"
77
description = 'Python types for Language Server Protocol.'
8-
version = "2024.0.0b1"
8+
version = "2024.0.0b2"
99
authors = [
1010
{ name = "Microsoft Corporation", email = "[email protected]" },
1111
]

packages/python/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
#
55
# pip-compile --generate-hashes ./packages/python/requirements.in
66
#
7-
attrs==24.2.0 \
8-
--hash=sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346 \
9-
--hash=sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2
7+
attrs==24.3.0 \
8+
--hash=sha256:8f5c07333d543103541ba7be0e2ce16eeee8130cb0b3f9238ab904ce1e85baff \
9+
--hash=sha256:ac96cd038792094f438ad1f6ff80837353805ac950cd2aa0e0625ef19850c308
1010
# via
1111
# -r ./packages/python/requirements.in
1212
# cattrs

packages/rust/lsprotocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lsprotocol"
3-
version = "1.0.0-alpha.2"
3+
version = "1.0.0-alpha.3"
44
edition = "2021"
55
description = "Rust types for Language Server Protocol generated from LSP specification."
66
authors = ["Microsoft Corporation <[email protected]>"]

packages/rust/lsprotocol/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1432,8 +1432,6 @@ pub enum MarkupKind {
14321432

14331433
/// Predefined Language kinds
14341434
/// @since 3.18.0
1435-
/// @proposed
1436-
#[cfg(feature = "proposed")]
14371435
#[derive(Serialize, Deserialize, PartialEq, Debug, Eq, Clone)]
14381436
pub enum LanguageKind {
14391437
#[serde(rename = "abap")]

requirements.txt

Lines changed: 146 additions & 116 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)