Skip to content

Commit

Permalink
build: update version (v0.0.80)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtshiba committed Feb 18, 2025
1 parent 3003076 commit 71f5da0
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 35 deletions.
56 changes: 28 additions & 28 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ members = [
]

[workspace.package]
version = "0.0.79"
version = "0.0.80"
authors = ["Shunsuke Shibayama <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
repository = "https://github.com/mtshiba/pylyzer"

[workspace.dependencies]
erg_common = { version = "0.6.52", features = ["py_compat", "els"] }
erg_compiler = { version = "0.6.52", features = ["py_compat", "els"] }
els = { version = "0.1.64", features = ["py_compat"] }
erg_common = { version = "0.6.53-nightly.0", features = ["py_compat", "els"] }
erg_compiler = { version = "0.6.53-nightly.0", features = ["py_compat", "els"] }
els = { version = "0.1.65-nightly.0", features = ["py_compat"] }
# rustpython-parser = { version = "0.3.0", features = ["all-nodes-with-ranges", "location"] }
# rustpython-ast = { version = "0.3.0", features = ["all-nodes-with-ranges", "location"] }
rustpython-parser = { git = "https://github.com/RustPython/Parser", version = "0.4.0", features = ["all-nodes-with-ranges", "location"] }
Expand All @@ -50,7 +50,7 @@ simplified_chinese = ["erg_common/simplified_chinese", "els/simplified_chinese"]
traditional_chinese = ["erg_common/traditional_chinese", "els/traditional_chinese"]

[dependencies]
pylyzer_core = { version = "0.0.79", path = "./crates/pylyzer_core" }
pylyzer_core = { version = "0.0.80", path = "./crates/pylyzer_core" }
erg_common = { workspace = true }
els = { workspace = true }

Expand Down
2 changes: 1 addition & 1 deletion crates/pylyzer_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ erg_common = { workspace = true }
erg_compiler = { workspace = true }
rustpython-parser = { workspace = true }
rustpython-ast = { workspace = true }
py2erg = { version = "0.0.79", path = "../py2erg" }
py2erg = { version = "0.0.80", path = "../py2erg" }

[lib]
path = "lib.rs"
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ pub(crate) fn parse_args() -> ErgConfig {
let mut cfg = ErgConfig {
effect_check: false,
ownership_check: false,
respect_pyi: false,
respect_pyi: true,
..ErgConfig::default()
};
let mut runtime_args: Vec<&'static str> = Vec::new();
Expand Down

0 comments on commit 71f5da0

Please sign in to comment.