diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c29bb31..a22b13ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +**0.8.14** +- Save current working directory when using cargo run so now for example: `std::process:Command::new("pwd")` will give the expected output instead of `/tmp/irust` +- Add `while` keyword to the highlight parser and to the statments that doesn't require `;` at the end +- Improve error message when reacer is not properly configured + **0.8.13** - Fix crash when history file is first created - Update dependencies diff --git a/Cargo.toml b/Cargo.toml index dfa00693..52656c72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "irust" -version = "0.8.13" +version = "0.8.14" authors = ["Nbiba Bedis "] edition = "2018" readme = "README.md" diff --git a/src/args.rs b/src/args.rs index ceee6a30..585e87ec 100644 --- a/src/args.rs +++ b/src/args.rs @@ -3,7 +3,7 @@ use crate::irust::{options::Options, IRust}; use std::env; -const VERSION: &str = "0.8.13"; +const VERSION: &str = "0.8.14"; pub fn handle_args(irust: &mut IRust) -> Result<(), IRustError> { let args: Vec = env::args().skip(1).collect();