diff --git a/CHANGELOG.md b/CHANGELOG.md index 98c4f304..53d8630d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +**1.62.1** +- Allow multiple irust instances again + **1.62.0** - Add `:hard_load_crate` command, its a more powerful version of `hard_load` that copies the whole crate src dir to irust directory, which allows using internal and external imports, see https://github.com/sigmaSd/irust-vim-plugin for an example diff --git a/Cargo.lock b/Cargo.lock index 6e2d78e2..9afa0dbb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -91,7 +91,7 @@ dependencies = [ [[package]] name = "irust" -version = "1.62.0" +version = "1.62.1" dependencies = [ "crossterm", "dirs", diff --git a/crates/irust/Cargo.toml b/crates/irust/Cargo.toml index 49f72a90..12304956 100644 --- a/crates/irust/Cargo.toml +++ b/crates/irust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "irust" -version = "1.62.0" +version = "1.62.1" authors = ["Nbiba Bedis "] edition = "2021" readme = "README.md"