Skip to content

Commit

Permalink
0.8.14
Browse files Browse the repository at this point in the history
  • Loading branch information
sigmaSd committed Jul 24, 2020
1 parent 081df74 commit 6613afd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "irust"
version = "0.8.13"
version = "0.8.14"
authors = ["Nbiba Bedis <[email protected]>"]
edition = "2018"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<String> = env::args().skip(1).collect();
Expand Down

0 comments on commit 6613afd

Please sign in to comment.