Skip to content

Commit

Permalink
0.8.17
Browse files Browse the repository at this point in the history
  • Loading branch information
sigmaSd committed Sep 14, 2020
1 parent 8a5132b commit 8ef5da2
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
**0.8.17**
- Handle crate_attributes correctly (Insert outside of main)
- Add `:toolchain` command (supported value: stable, nightly, beta)
- `extern` keyword doesn't require `;`
- Detect build error after `:add` command
- Update dependencies

**0.8.16**
- fix duplicate building after using `:add` command

Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "irust"
version = "0.8.16"
version = "0.8.17"
authors = ["Nbiba Bedis <[email protected]>"]
edition = "2018"
readme = "README.md"
Expand All @@ -9,11 +9,11 @@ repository = "https://github.com/sigmaSd/IRust"
license = "MIT"

[dependencies]
crossterm = { version = "0.17.8", features = ["serde"] }
crossterm = { version = "0.17.7", features = ["serde"] }
dirs-next = "1.0.1"
once_cell = "1.4.1"
toml = "0.5.6"
serde = { version = "1.0.115", features = ["derive"] }
serde = { version = "1.0.116", features = ["derive"] }

[target.'cfg(unix)'.dependencies]
nix = "0.18.0"
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ Cross Platform Rust Repl

**:color** *<key>* *<value>* => change token highlight color at runtime, for the token list and value representation check the Theme section, exp: `:color function red` `:color macro #ff12ab` `:color reset`

**:toolchain** *<value>* => switch between toolchains, supported value are: `stable`, `beta`, `nighty`

**::** => run a shell command, example `::ls`

You can use arrow keys to cycle through commands history
Expand Down Expand Up @@ -101,6 +103,7 @@ IRust config file is located in:
// other
first_irust_run = false
toolchain = "stable"
```

## Theme
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.16";
const VERSION: &str = "0.8.17";

pub fn handle_args(irust: &mut IRust) -> Result<(), IRustError> {
let args: Vec<String> = env::args().skip(1).collect();
Expand Down

0 comments on commit 8ef5da2

Please sign in to comment.