Skip to content

Commit f369d00

Browse files
committed
Bump version to 0.2.0
1 parent 3cb2caf commit f369d00

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "phpantom_lsp"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2024"
55
license = "MIT"
66

src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ impl Backend {
131131
pub fn new(client: Client) -> Self {
132132
Self {
133133
name: "PHPantomLSP".to_string(),
134-
version: "0.1.0".to_string(),
134+
version: "0.2.0".to_string(),
135135
open_files: Arc::new(Mutex::new(HashMap::new())),
136136
ast_map: Arc::new(Mutex::new(HashMap::new())),
137137
client: Some(client),
@@ -153,7 +153,7 @@ impl Backend {
153153
pub fn new_test() -> Self {
154154
Self {
155155
name: "PHPantomLSP".to_string(),
156-
version: "0.1.0".to_string(),
156+
version: "0.2.0".to_string(),
157157
open_files: Arc::new(Mutex::new(HashMap::new())),
158158
ast_map: Arc::new(Mutex::new(HashMap::new())),
159159
client: None,
@@ -178,7 +178,7 @@ impl Backend {
178178
pub fn new_test_with_stubs(stub_index: HashMap<&'static str, &'static str>) -> Self {
179179
Self {
180180
name: "PHPantomLSP".to_string(),
181-
version: "0.1.0".to_string(),
181+
version: "0.2.0".to_string(),
182182
open_files: Arc::new(Mutex::new(HashMap::new())),
183183
ast_map: Arc::new(Mutex::new(HashMap::new())),
184184
client: None,
@@ -208,7 +208,7 @@ impl Backend {
208208
) -> Self {
209209
Self {
210210
name: "PHPantomLSP".to_string(),
211-
version: "0.1.0".to_string(),
211+
version: "0.2.0".to_string(),
212212
open_files: Arc::new(Mutex::new(HashMap::new())),
213213
ast_map: Arc::new(Mutex::new(HashMap::new())),
214214
client: None,
@@ -234,7 +234,7 @@ impl Backend {
234234
) -> Self {
235235
Self {
236236
name: "PHPantomLSP".to_string(),
237-
version: "0.1.0".to_string(),
237+
version: "0.2.0".to_string(),
238238
open_files: Arc::new(Mutex::new(HashMap::new())),
239239
ast_map: Arc::new(Mutex::new(HashMap::new())),
240240
client: None,

tests/server_lifecycle.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ async fn test_initialize_server_info() {
1212

1313
let server_info = result.server_info.expect("server_info should be present");
1414
assert_eq!(server_info.name, "PHPantomLSP");
15-
assert_eq!(server_info.version, Some("0.1.0".to_string()));
15+
assert_eq!(server_info.version, Some("0.2.0".to_string()));
1616
}
1717

1818
#[tokio::test]

zed-extension/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "phpantom-zed"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
publish = false
66
license = "MIT"

0 commit comments

Comments
 (0)