diff --git a/CHANGELOG.md b/CHANGELOG.md index b6d88abe..42f32ab2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +**1.63.3** +- Fix `:expand` command + **1.63.2** - Fix clippy warnings diff --git a/Cargo.lock b/Cargo.lock index 64bbe55e..c9ba536a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -82,7 +82,7 @@ dependencies = [ [[package]] name = "irust" -version = "1.63.2" +version = "1.63.3" dependencies = [ "crossterm", "dirs", diff --git a/crates/irust/Cargo.toml b/crates/irust/Cargo.toml index 92f70d74..c487e30b 100644 --- a/crates/irust/Cargo.toml +++ b/crates/irust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "irust" -version = "1.63.2" +version = "1.63.3" authors = ["Nbiba Bedis "] edition = "2021" readme = "README.md" @@ -15,7 +15,7 @@ toml = "0.5.8" serde = { version = "1.0.126", features = ["derive"] } printer = { path = "../printer/", version = "0.4.1" } irust_api = { path = "../irust_api/", version = "0.30.0" } -irust_repl = { path = "../irust_repl", version = "0.19.0", features = ["serde"] } +irust_repl = { path = "../irust_repl", version = "0.19.2", features = ["serde"] } rscript = "0.17.0" rustc_lexer = { version = "727.0.0", package = "rustc-ap-rustc_lexer" }