diff --git a/CHANGELOG.md b/CHANGELOG.md index 993f05d5..43b208c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +**1.12.0** +- Add more commands/ update vim script + **1.11.0** - Fix regression: Restore history caching to disk - Add default toolchain, and use it by default diff --git a/Cargo.lock b/Cargo.lock index 11a5e783..d2947e00 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -165,7 +165,7 @@ dependencies = [ [[package]] name = "irust" -version = "1.11.0" +version = "1.12.0" dependencies = [ "bincode", "crossterm", diff --git a/crates/irust/Cargo.toml b/crates/irust/Cargo.toml index c10eac73..0da5890a 100644 --- a/crates/irust/Cargo.toml +++ b/crates/irust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "irust" -version = "1.11.0" +version = "1.12.0" authors = ["Nbiba Bedis "] edition = "2018" readme = "README.md" diff --git a/crates/irust/src/args.rs b/crates/irust/src/args.rs index ba49be2a..285ab9ac 100644 --- a/crates/irust/src/args.rs +++ b/crates/irust/src/args.rs @@ -2,7 +2,7 @@ use crate::irust::options::Options; use std::env; -const VERSION: &str = "1.11.0"; +const VERSION: &str = "1.12.0"; pub fn handle_args(options: &mut Options) -> bool { let args: Vec = env::args().skip(1).collect();