From cbade08eb59bc225628f07cc1e9a6620c3e5124d Mon Sep 17 00:00:00 2001 From: Nbiba Bedis Date: Fri, 7 May 2021 18:15:13 +0100 Subject: [PATCH] 1.8.1 --- CHANGELOG.md | 3 +++ Cargo.lock | 2 +- crates/irust/Cargo.toml | 2 +- crates/irust/src/args.rs | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef0619d4..a7601d50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +**1.8.1** +- Fix typo in script manager, that caused `output_prompt` script to be ignored - @Aloxaf + **1.8.0** - Improve cold startup time by making the first build async - Merge `:set_executor/executor` commands in one command `:executor`, if no arguments are provided it will act as a getter, else as setter, `:toolchain` command is updated to have the same behavior diff --git a/Cargo.lock b/Cargo.lock index b07382b2..6d87873e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -171,7 +171,7 @@ dependencies = [ [[package]] name = "irust" -version = "1.8.0" +version = "1.8.1" dependencies = [ "bincode", "crossterm", diff --git a/crates/irust/Cargo.toml b/crates/irust/Cargo.toml index 009d92d9..1ab2d1e5 100644 --- a/crates/irust/Cargo.toml +++ b/crates/irust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "irust" -version = "1.8.0" +version = "1.8.1" authors = ["Nbiba Bedis "] edition = "2018" readme = "README.md" diff --git a/crates/irust/src/args.rs b/crates/irust/src/args.rs index fd321f69..a81a19a4 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.8.0"; +const VERSION: &str = "1.8.1"; pub fn handle_args(options: &mut Options) -> bool { let args: Vec = env::args().skip(1).collect();