Skip to content

Commit

Permalink
build: update version (nightly.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtshiba committed Jun 16, 2024
1 parent ea2e4f5 commit b3ad904
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 18 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ members = [
]

[workspace.package]
version = "0.6.38"
version = "0.6.39-nightly.0"
authors = ["erg-lang team <moderation.erglang@gmail.com>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand Down Expand Up @@ -72,12 +72,12 @@ experimental = ["erg_common/experimental", "erg_parser/experimental", "erg_compi
log-level-error = ["erg_common/log-level-error", "erg_parser/log-level-error", "erg_compiler/log-level-error", "erg_linter/log-level-error"]

[workspace.dependencies]
erg_common = { version = "0.6.38", path = "./crates/erg_common" }
erg_parser = { version = "0.6.38", path = "./crates/erg_parser" }
erg_compiler = { version = "0.6.38", path = "./crates/erg_compiler" }
erg_linter = { version = "0.6.38", path = "./crates/erg_linter" }
els = { version = "0.1.50", path = "./crates/els" }
erg_proc_macros = { version = "0.6.38", path = "./crates/erg_proc_macros" }
erg_common = { version = "0.6.39-nightly.0", path = "./crates/erg_common" }
erg_parser = { version = "0.6.39-nightly.0", path = "./crates/erg_parser" }
erg_compiler = { version = "0.6.39-nightly.0", path = "./crates/erg_compiler" }
erg_linter = { version = "0.6.39-nightly.0", path = "./crates/erg_linter" }
els = { version = "0.1.51-nightly.0", path = "./crates/els" }
erg_proc_macros = { version = "0.6.39-nightly.0", path = "./crates/erg_proc_macros" }
pyo3 = { version = "0.20", features = ["extension-module"] }

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/els/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "els"
description = "An Erg compiler frontend for IDEs, implements LSP."
documentation = "http://docs.rs/els"
version = "0.1.50"
version = "0.1.51-nightly.0"
authors.workspace = true
license.workspace = true
edition.workspace = true
Expand Down
7 changes: 4 additions & 3 deletions crates/els/tests/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ fn test_open() -> Result<(), Box<dyn std::error::Error>> {
client.notify_initialized()?;
client.wait_messages(3)?;
client.notify_open(FILE_A)?;
client.wait_messages(4)?;
// log, work-done, etc.
client.wait_messages(6)?;
assert!(client.responses.iter().any(|val| val
.to_string()
.contains("tests/a.er passed, found warns: 0")));
Expand Down Expand Up @@ -382,9 +383,9 @@ fn test_dependents_check() -> Result<(), Box<dyn std::error::Error>> {
client.notify_initialized()?;
client.wait_messages(3)?;
client.notify_open(FILE_B)?;
client.wait_messages(4)?;
client.wait_messages(6)?;
client.notify_open(FILE_C)?;
client.wait_messages(4)?;
client.wait_messages(6)?;
let uri_b = NormalizedUrl::from_file_path(Path::new(FILE_B).canonicalize()?)?;
// delete b.er:3, causing an error in c.er
client.notify_change(uri_b.clone().raw(), delete_line(2))?;
Expand Down

0 comments on commit b3ad904

Please sign in to comment.